网络编程
位置:首页>> 网络编程>> Asp编程>> asp 去掉html中的table正则代码函数

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

 来源:asp之家 发布时间:2011-04-06 10:48:00 

标签: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 

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com