asp计算字符串出现次数 ASP计算str2在str1中出现的次数
人气:0想了解ASP计算str2在str1中出现的次数的相关内容吗,在本文为您仔细讲解asp计算字符串出现次数的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:ASP,str2,str1,出现的次数,下面大家一起来学习吧。
function CountStr(str1,str2) dim tmp,i,j
if str1="" or isnull(str1) then
j=0
elseif str2="" or isnull(str2) then
j=1
else
tmp=split(str1,str2)
j=0
for i=0 to ubound(tmp)
if tmp(i)<>"" then j=j+1
next
end if
countstr=j
end function
加载全部内容