当前位置:首页>>网络编程>>ASP教程>>正文

动态网页爱好者来看:Asp过滤HTML的函数

文章出处:设计前沿收集 作者:未知 发布时间:2007-05-28 收藏到QQ书签

Asp过滤Html代码

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
RemoveHTML=strHTML
Set objRegExp = Nothing
End Function

过滤图片正则表达式

<img[\s\S]+>


Google