"re.global=truea=strOutTable=re.replace(a,"")EndFunctio ;小李飞刀资源网更新日期:2024/10/21.">

asp 去掉html中的table正则代码函数

网络编程 发布日期:2024/10/21 浏览次数:1

正在浏览:asp 去掉html中的table正则代码函数
'去掉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