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

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2852.html