欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

計(jì)算一個(gè)字符串在另一字符串中出現(xiàn)的次數(shù)函數(shù)

 更新時(shí)間:2008年03月06日 21:37:40   作者:  
計(jì)算一個(gè)字符串在另一字符串中出現(xiàn)的次數(shù)函數(shù)
Function strnum(patrn, strng)
  Dim regEx, Match, Matches,xx
    xx=0
  Set regEx = New RegExp
  regEx.Pattern = patrn
  regEx.IgnoreCase = True            ' 設(shè)置是否區(qū)分大小寫。
  regEx.Global = True
  Set Matches = regEx.Execute(strng)
  For Each Match in Matches
    xx=xx+1
  Next
  strnum = xx
End Function

相關(guān)文章

最新評(píng)論