asp去掉html,保留img br p div的正则实现代码
编程学习 2021-07-05 10:07www.dzhlxh.cn编程入门
非常实用的一个函数,这里主要用到了正则的匹配模式大家可以看狼蚁SEO网站的正则专题
代码如下:
'去掉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