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
function outtable(str)
dim a,re
set re=new regexp
re.pattern="\<[^>]+()\>"
re.global=true
a=str
outtable=re.replace(a,"")
end function
上一篇: 国外运营商拒绝为小米手机开启双卡:胶水+塑料片暴力屏蔽
下一篇: Vue计算属性的学习笔记