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

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp自动补全html标签自动闭合(正则表达式)
    复制代码 代码如下:

    Function closeHTML(strContent)
    Dim arrTags, i, OpenPos, ClosePos, re, strMatchs, j, Match
    Set re = New RegExp
    re.IgnoreCase = True
    re.Global = True
    arrTags = Array("p", "div", "span", "table", "ul", "font", "b", "u", "i", "h1", "h2", "h3", "h4", "h5", "h6")
    For i = 0 To UBound(arrTags)
    OpenPos = 0
    ClosePos = 0


    re.Pattern = "\" + arrTags(i) + "( [^\\>]+|)\&;"
    Set strMatchs = re.Execute(strContent)
    For Each Match in strMatchs
    OpenPos = OpenPos + 1
    Next
    re.Pattern = "\/" + arrTags(i) + "\&;"
    Set strMatchs = re.Execute(strContent)
    For Each Match in strMatchs
    ClosePos = ClosePos + 1
    Next
    For j = 1 To OpenPos - ClosePos
    strContent = strContent + "/" + arrTags(i) + ">"
    Next
    Next
    closeHTML = strContent
    End Function
    您可能感兴趣的文章:
    • php过滤HTML标签、属性等正则表达式汇总
    • asp.net正则表达式删除指定的HTML标签的代码
    • Java/Js下使用正则表达式匹配嵌套Html标签
    • 移除HTML标签的正则表达式
    • 用正则表达式格式化html标签的代码
    • 请教一个正则表达式,匹配所有Html标签外部的指定字符串
    • 使用正则表达式去除所有html标签只保留文字
    上一篇:asp中提示至少一个参数没有被指定值 解决方法
    下一篇:asp连接access、sql数据库代码及数据库操作代码
  • 相关文章
  • 

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

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

    asp自动补全html标签自动闭合(正则表达式) asp,自动,补全,html,标签,