asp 记录某字符串中某字符的个数

各位高手怎么用asp记录某字符在字符串中出现的次数啊... 各位高手怎么用asp记录某字符在字符串中出现的次数啊 展开
 我来答
红豆绿成汤3491
2007-05-21 · TA获得超过967个赞
知道小有建树答主
回答量:474
采纳率:0%
帮助的人:0
展开全部
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

第二种:
<%
Function getCount(s,subs)
temp = s
count= 0
while(instr(s,subs)>0)
response.write s & "<BR>"
count = count + 1
s = right(s,len(s) - instr(s,subs))

Wend
getCount = count
End Function

s = "我们建议这样做好,他们不建议这样做!怎么办?"
subs="建议"

response.write getCount(s,subs)
%>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式