咨询电话:010-82823766

动态网页爱好者来看:Asp过滤HTML的函数
  • 2008-2-29 15:39:30
  • 发表时间:
  • 浏览次数:
  • 网络
  • 文章来源:
  • 佚名
  • 作者:

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]+>

top
推荐导读
推荐导读
bottom
top
热门文章
热门文章
bottom