asp 正则 过滤重复字符串的代码
asp 正则 过滤重复字符串的代码
发布时间:2016-12-29 来源:查字典编辑
摘要:比如1223445677777778aabbcccccccccc经过过滤之后就是12345678abc复制代码代码如下:

比如 1223445677777778aabbcccccccccc 经过过滤之后就是12345678abc

复制代码 代码如下:

<%

'过滤重复

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="1223445677777778aabbcccccccccc"

response.write Norepeat(s)

%>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新正则表达式学习
热门正则表达式学习
编程开发子分类