asp 去掉html中的table正则代码函数
程序员文章站
2022-05-31 12:44:22
'去掉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
function outtable(str)
dim a,re
set re=new regexp
re.pattern="\<[^>]+()\>"
re.global=true
a=str
outtable=re.replace(a,"")
end function