正则清除HTML标签但保留其中一部分标签

前端之家收集整理的这篇文章主要介绍了正则清除HTML标签但保留其中一部分标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用asp语言实现
str="<a href=""a.htm"">a.htm</a><div>afefe</div>feaa<b>bbb</b>
<a href=http://www.baidu.com id=""ggg"">ggg</a><abbr>测试</abbr>"
Set re=new RegExp   
 re.IgnoreCase =true   
 re.Global=True   
 re.Pattern="(<(?!/?(a|p|b)(\s|>))[^>]*>)"   
 str=re.replace(str," ")   
 response.Write str 
 set re=nothing   

那正则也可以用在其他语言里实现里实现 原文链接:https://www.f2er.com/regex/360884.html

猜你在找的正则表达式相关文章