一个检测一个字符串在另一个字符串当中出现几次的函数

80酷酷网    80kuku.com

  函数|字符串U2 Forum rautinee原创$
$http://u2bbs.126.com$
一个网友问就写了一个,:)
Function CheckTheChar(TheChar,TheString)
'TheChar="要检测的字符串"
'TheString="待检测的字符串"
if inStr(TheString,TheChar) then
for n =1 to Len(TheString)
if Mid(TheString,n,Len(TheChar))=TheChar then
CheckTheChar=CheckTheChar+1
End if
Next
CheckTheChar="这个字符"&CheckTheChar&"次"
else
CheckTheChar="0次"
end if
End Function
'++++++++++++++++
example:
Response.write CheckTheChar("大家","a224大家4a434a4大家654arewr4a4a")
----------------------------------------------------
ok enjoy it and good luck

分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: