主页 > 知识库 > asp自动补全html标签自动闭合(正则表达式)

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

热门标签:银行业务 电子围栏 Mysql连接数设置 团购网站 Linux服务器 科大讯飞语音识别系统 阿里云 服务器配置
复制代码 代码如下:

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自动补全html标签自动闭合(正则表达式)》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266