asp 去掉html中的table正则代码函数
编程学习 2021-07-05 10:58www.dzhlxh.cn编程入门
去掉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
Function OutTable(str)
dim a,re
set re=new RegExp
re.pattern="\<[^>]+()\>"
re.global=true
a=str
OutTable=re.replace(a,"")
End Function