首页 > 网站 > 建站经验 > 正文

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

2019-11-02 14:44:44
字体:
来源:转载
供稿:网友

 html标签是一种算是复杂的东西了,我们一般是过滤不了的现在利用正则来操作一下,有需要学习的同学可以参考一下本文章。

   代码如下  

<%
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 = R

国内电影[www.aikan.tv/xzhtml/11/]
eplace(strOutput, "<", "<")
strOutput = Replace(strOutput, ">", ">")

stripHTML = strOutput 'Return the value of strOutput

Set objRegExp = Nothing
End Function
%>

使用方法

 代码如下  

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表