asp去掉html,保留img br p div的正则实现代码
程序员文章站
2022-05-19 09:13:11
复制代码 代码如下:'去掉html中的table代码 function outtable(str) dim a,re set re=new regexp re.patter...
复制代码 代码如下:
'去掉html中的table代码
function outtable(str)
dim a,re
set re=new regexp
re.pattern="<(?!img|br|p|div).*?>"
re.global=true
a=str
outtable=re.replace(a,"")
end function