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

asp正则过滤重复字符的函数

asp下过滤重复字符的代码,有时候我们需要过滤一些重复的字符串,下面的代码即可解决这个问题
比如 12234456zzzyk.com8aabbcccccccccc 经过过滤之后就是123456zyk.com8ab

<%
'过滤重复
Function norepeat(Str)
Dim RegEx
If IsNull(Str) Or Str="" Then Exit Function
Set RegEx=New RegExp
RegEx.Global = True
RegEx.IgnoreCase=True
RegEx.MultiLine = True
RegEx.pattern="(.)/1+"
str=regEx.replace(str,"$1")
Set RegEx=Nothing
Norepeat=str
End Function
'示例
s="12234456zzzyk.com8aabbcccccccccc"
response.write Norepeat(s)
%>
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,