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

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    ASP正则表达式技巧

    复制代码 代码如下:

    %
    str = request("str")
    reg = request("reg")
    set regex = new RegExp

    With regex
    .Pattern = reg
    .IgnoreCase = False
    .Global = True
    End With

    Set match = regex.Execute(str)

    If match.Count > 0 Then
    For Each matched in match
    Response.Write "B>input value=" matched.Value " >/B> 位置: B>" matched.FirstIndex "/B> 长

    度:"matched.Length"BR>"
    Next

    Else
    Response.Write "B>" regex.Pattern "/B> 没有找到匹配"
    End If

    Set regex = nothing
    %>

    form method=post>
    text:br>
    textarea cols=50 rows=10 name="str">%=str%>/textarea>br>
    regexp:input name="reg" value="%=reg%>">br>
    input type=submit value="regexp">
    /form>

    关于具体的正则表达式函数
    https://www.jb51.net/article/20816.htm

    您可能感兴趣的文章:
    • ASP中过滤UBB和Html标签
    • HTML标签及ASP函数速查表
    • ASP.NET使用正则表达式屏蔽垃圾信息
    • ASP 正则表达式常用的几种方法(execute、test、replace)
    • ASP超级链接和HTML函数正则表达式 修正版
    • asp 使用正则表达式替换word中的标签,转为纯文本
    • asp.net正则表达式删除指定的HTML标签的代码
    • asp正则表达式使用详解
    • asp的RegExp对象正则表达式功能用法[比较全]
    • 正则表达式速查表(ASP.NET)
    • asp自动补全html标签自动闭合(正则表达式)
    • ASP正则表达式清除HTML指定标签的方法
    上一篇:XMLHttp ASP远程获取网页内容代码
    下一篇:ASP Access实现网站计数器(访问量)
  • 相关文章
  • 

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

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

    ASP正则表达式技巧 ASP,正则,表达式,技巧,ASP,