[removed]能算出一个字符在一字段里共出现有几次的函数

时间:2023-12-25 01:07:15
【文件属性】:

文件名称:[removed]能算出一个字符在一字段里共出现有几次的函数

文件大小:17KB

文件格式:PDF

更新时间:2023-12-25 01:07:15

vb vbs 函数

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”))


网友评论