当前位置:首页 > ASP教程 > ASP其他

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


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!