页面导航: 首页网络编程编程10000问 → 正文内容

如何实现非大小写的替换?

发布:dxy 字体:[增加 减小] 类型:转载

如何实现非大小写的替换?

Function ReplaceNoIgnoreCase(str,replStr)
If len(replStr)<1 or str="" Then
ReplaceTest=str
Exit function
End If
Dim LoopN
LoopN=1
Dim TmpStr,inStrN,LenreplStr,Ustr,UreplStr
LenreplStr = Len(replStr)
TmpStr = str
Ustr = Ucase(str)
UreplStr = Ucase(replStr)
str=""
inStrN = inStr(Ustr,UreplStr)
Do While inStrN>0 and TmpStr<>""
LoopN = LoopN+1
If LoopN>10 Then Exit Function
str=str & Left(TmpStr,inStrN-1)
TmpStr = Mid(TmpStr,inStrN)
UStr = Mid(UStr,inStrN)
str=str & "<font color=ff0000>" & Left(TmpStr,LenreplStr) & "</font>"
TmpStr = Mid(TmpStr,LenreplStr+1)
UStr = Mid(UStr,LenreplStr+1)
inStrN = inStr(Ustr,UreplStr)
If inStrN<1 Then str=str&TmpStr
Loop
ReplaceTest = str
End Function
Response.Write "<p>result:"&ReplaceNoIgnoreCase("Flying Happy in the Sun ")

浏览次数:载入中... 打印本文关闭本文文章来源
·在百度中搜索关于“如何实现非大小写的替换?相关内容

文章评论

共有 位脚本之家网友发表了评论我来说两句

同 类 文 章
最 近 更 新
热 点 排 行