" re.global=true a=str OutTable=re.replace(a,"") End Functio ;明霞山资源网更新日期:2025/6/23.">

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

网络编程 发布日期:2025/6/23 浏览次数: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