建站代码网

热门标签

删除html代码的正则表达式,RemoveHTML函数

Function RemoveHTML(strHTML)
Dim objRegExp, Match, Matches
Set objRegExp = New Regexp
objRegExp.IgnoreCase = True
objRegExp.Global = True
'取闭合的<>
objRegExp.Pattern = "<.+?>"
'进行匹配
Set Matches = objRegExp.Execute(strHTML)
' 遍历匹配集合,并替换掉匹配的项目
For Each Match in Matches
strHtml=Replace(strHTML,Match.Value,"")
Next

 

strHTML=replace(strHTML,vbcrlf,"")
strHTML=replace(strHTML,"  "," ")
RemoveHTML=left(strHTML,100)


RemoveHTML=strHTML
Set objRegExp = Nothing
End Function 
使用方法,在任何需要调用的地方<%=RemoveHTML(rs("content"))%>

X