• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp 正则 过滤重复字符串的代码
    比如 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)
    %>
    上一篇:PHP 正则 email语句详解
    下一篇:ASP 正则函数替换分页后的参数
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    asp 正则 过滤重复字符串的代码 asp,正则,过滤,重复,字符串,