指引网

当前位置: 主页 > 编程开发 > ASP >

asp中正则表达式过滤html代码函数

来源:网络 作者:佚名 点击: 时间:2017-06-22 20:28
[摘要] 代码如下 复制代码 % Option Explicit Function stripHTML(strHTML) 'Strips the HTML tags from strHTML Dim objRegExp, strOutput Set objRegExp = New Regexp objRegExp.IgnoreCase = True objRegExp.Global = True objRegExp.Pattern = .+? 'Repl
 代码如下 复制代码

<%
Option Explicit

Function stripHTML(strHTML)
'Strips the HTML tags from strHTML

Dim objRegExp, strOutput
Set objRegExp = New Regexp

objRegExp.IgnoreCase = True
objRegExp.Global = True
objRegExp.Pattern = "<.+?>"

'Replace all HTML tag matches with the empty string
strOutput = objRegExp.Replace(strHTML, "")

'Replace all < and > with < and >
strOutput = Replace(strOutput, "<", "<")
strOutput = Replace(strOutput, ">", ">")

stripHTML = strOutput 'Return the value of strOutput

Set objRegExp = Nothing
End Function
%>

使用方法

 代码如下 复制代码

stripHTML(strhtml)就可以了,这样用起来就方便多了

------分隔线----------------------------