主頁 > 知識庫 > asp自動補全html標簽自動閉合(正則表達式)

asp自動補全html標簽自動閉合(正則表達式)

熱門標簽:創(chuàng)意電話機器人 梧州市地圖標注 地圖標注陽江 外呼線路批發(fā) 石家莊慧營銷外呼系統(tǒng) 濟源電銷外呼系統(tǒng)線路 武穴地圖標注 java外呼系統(tǒng)是什么 世界地圖標注了哪些城市
復制代碼 代碼如下:

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標簽只保留文字

標簽:淮北 滁州 來賓 揭陽 迪慶 南寧 甘南 唐山

巨人網(wǎng)絡通訊聲明:本文標題《asp自動補全html標簽自動閉合(正則表達式)》,本文關鍵詞  asp,自動,補全,html,標簽,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《asp自動補全html標簽自動閉合(正則表達式)》相關的同類信息!
  • 本頁收集關于asp自動補全html標簽自動閉合(正則表達式)的相關信息資訊供網(wǎng)民參考!
  • 推薦文章