当前位置:编程学习 > asp >>

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

上一个:ASP注册登陆实例代码
下一个:ASP字符串转换为整形、双精度型、布尔

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,