ASP计算str2在str1中出现的次数
时间:2021-02-14 11:30:39|栏目:ASP代码|点击: 次
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
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
栏 目:ASP代码
下一篇:ASP操作Excel技术总结
本文标题:ASP计算str2在str1中出现的次数
本文地址:http://www.codeinn.net/misctech/62805.html