以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]求助 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=84550) |
-- 作者:xu84988 -- 发布时间:2016/5/4 22:26:00 -- [求助]求助 请问要从"DGG-201606"提取这个编码字符串,等于另外一个字符,DGG-201605,怎么写。 |
-- 作者:大红袍 -- 发布时间:2016/5/4 23:02:00 -- Dim str1 As String = "DGG-201606" Dim str2 As String = "DGG-201605" If str1.Split("-")(0) = str2.Split("-")(0) Then msgbox("相等") End If |