计算一个字符串在另一字符串中出现的次数函数

时间:2021-08-01 10:49:40
  1. Function strnum(patrn, strng)  
  2.   Dim regEx, Match, Matches,xx  
  3.     xx=0  
  4.   Set regEx = New RegExp  
  5.   regEx.Pattern = patrn  
  6.   regEx.IgnoreCase = True            ' 设置是否区分大小写。  
  7.   regEx.Global = True  
  8.   Set Matches = regEx.Execute(strng)  
  9.   For Each Match in Matches  
  10.     xx=xx+1  
  11.   Next  
  12.   strnum = xx  
  13. End Function