欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-09-06 17:36:30
'去掉html中的table代码 function outtable(str) dim a,re set re=new regexp re.pattern="\<[^...
'去掉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