ASP中过滤UBB和Html标签

我们存储在数据库中的内容是HTML格式的,但是有时候我们需要无格式的显示这内容,这是用正则表达式实现的过滤。 代码如下: % functionnohtml(str) dimre Setre=newRegExp re.IgnoreCase=true re.Global=True re.Pattern='(\.[^\]*\)' str=re.replace(str,'') re.Pattern='(\/[^\]*\)' str=re.replace(str,'') nohtml=str setre=

作者: 来源: 时间: 17-11-23 15:11:57


我们存储在数据库中的内容是HTML格式的,但是有时候我们需要无格式的显示这内容,这是用正则表达式实现的过滤。
代码如下:
<%
function nohtml(str) 
dim re 
Set re=new RegExp 
re.IgnoreCase =true 
re.Global=True 
re.Pattern="(\<.[^\<]*\>)" 
str=re.replace(str," ") 
re.Pattern="(\</[^\<]*\>)" 
str=re.replace(str," ") 
nohtml=str 
set re=nothing 
end function 
%>
11
22
33
隐藏区块

会员注册

本功能为预留功能,暂不支持注册 ^_^

Login

社交帐号登陆

使用以下任意帐号可登陆本站

Close section
Close

联系我们

关于5UCMS 您有任何需求 均可以留言给我们