"re.global=truea=strOutTable=re.replace(a,"")EndFunctio ; 更新日期:2025/1/11 昆仑资源网" />

当前位置:首页 >> 网络编程

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