" re.global=true a=str OutTabl">
当前位置:Gxlcms > ASP > asp 去掉html中的table正则代码函数

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

时间:2021-07-01 10:21:17 帮助过:75人阅读

'去掉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

人气教程排行