Function RegExpTest(patrn, strng) Dim regEx, Matches Set regEx = New RegExp regEx.Pattern = patrn regEx.IgnoreCase = True ‘为真则忽略大小写,否则严格匹配大小写 regEx.Global = True Set Matches = regEx.Execute(strng) RegExpTest = Matches.count End Function MsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))
查看更多关于vbs:能算出一个字符在一字段里共出现有几次的函的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did9489