欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-11-01 08:54:46
function strnum(patrn, strng)   dim regex, match, m...
function strnum(patrn, strng)
  dim regex, match, matches,xx
    xx=0
  set regex = new regexp
  regex.pattern = patrn
  regex.ignorecase = true            ' 设置是否区分大小写。
  regex.global = true
  set matches = regex.execute(strng)
  for each match in matches
    xx=xx+1
  next
  strnum = xx
end function