当前位置:主页 > 软件编程 > ASP代码 >

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

时间:2021-05-22 08:43:18 | 栏目:ASP代码 | 点击:

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

您可能感兴趣的文章:

相关文章