asp正则去除html属性,ASP去除HTML标签的正则函数

项目中有时候我们需要去掉内容的一些指定HTML标签,如去除div标签,去除A标签,去除Table标签等等,下面青岛星网跟大家分享一个封装的正则函数。

ASP去除HTML标签的正则函数

'/* 函数名称:qdxw_ReplaceHtml ClearHtml

'/* 函数语言:VBScript Language

'/* 作  用:清除文件HTML格式函数

'/* 传递参数:Content (注:需要进行清除的内容)

'/* 函数说明:正则匹配(正则表达式)模式进行数据匹配替换

Function ClearHtml(Content)

Content=qdxw_ReplaceHtml("[^>]*;", "", Content)

Content=qdxw_ReplaceHtml("?marquee[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?object[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?param[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?embed[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?table[^>]*>", "", Content)

Content=qdxw_ReplaceHtml(" ","",Content)

Content=qdxw_ReplaceHtml("?tr[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?th[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?p[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?a[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?img[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?tbody[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?li[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?span[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?div[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?th[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?td[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?script[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("(javascript|jscript|vbscript|vbs):", "", Content)

Content=qdxw_ReplaceHtml("on(mouse|exit|error|click|key)", "", Content)

Content=qdxw_ReplaceHtml("/?xml[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("/?[a-z]+:[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?font[^>]*>", "", Content)

Content=qdxw_ReplaceHtml("?b[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?u[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?i[^>]*>","",Content)

Content=qdxw_ReplaceHtml("?strong[^>]*>","",Content)

ClearHtml=Content

End Function

Function qdxw_ReplaceHtml(patrn, strng,content)

IF IsNull(content) Then

content=""

End IF

Set regEx = New RegExp ' 建立正则表达式。

regEx.Pattern = patrn ' 设置模式。

regEx.IgnoreCase = true ' 设置忽略字符大小写。

regEx.Global = True ' 设置全局可用性。

qdxw_ReplaceHtml=regEx.Replace(content,strng) ' 执行正则匹配

End Function

%>

调用函数:ClearHtml() 即可

使用方法为:ClearHtml(Content),其中Content为欲清除的代码存放的变量

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值