您现在的位置是:网站首页> 编程资料编程资料

asp 去掉html中的table正则代码函数_应用技巧_

2023-05-25 314人已围观

简介 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

-六神源码网