Asp中替换掉HTML标签的函数,ASP使用正则表达式取消HTML标签的函数(大家直接拿去用吧~):

Function RemoveHTML(strText)

Dim RegEx

Set RegEx = New RegExp

RegEx.Pattern = “<[^>]*>”

RegEx.Global = True

RemoveHTML = RegEx.Replace(strText, “”)

End Function