asp 去掉html中的table正则代码函数
(编辑:jimmy 日期: 2024/11/9 浏览:3 次 )
'去掉html中的table代码
Function OutTable(str)
dim a,re
set re=new RegExp
re.pattern="\<[^>]+()\>"
re.global=true
a=str
OutTable=re.replace(a,"")
End Function
Function OutTable(str)
dim a,re
set re=new RegExp
re.pattern="\<[^>]+()\>"
re.global=true
a=str
OutTable=re.replace(a,"")
End Function
下一篇:ASP+MSSQL2000 数据库被批量注入后的解决方法第1/2页