首页 > 编程 > ASP > 正文

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

2024-05-04 11:08:57
字体:
来源:转载
供稿:网友
去掉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 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表