C#正则过滤HTML标签并保留指定标签的方法
程序员文章站
2023-11-26 23:20:10
本文实例讲述了c#正则过滤html标签并保留指定标签的方法。分享给大家供大家参考,具体如下:
这边主要看到一个过滤的功能:
public static stri...
本文实例讲述了c#正则过滤html标签并保留指定标签的方法。分享给大家供大家参考,具体如下:
这边主要看到一个过滤的功能:
public static string filterhtmltag(string s) { //<...>标记正则表达式 return regex.replace(s, @"<[^>]*>", delegate(match match) { string v = match.tostring(); //图片,<p>,<br>正则表达式 regex rx = new regex(@"^<(p|br|img.*)>$", regexoptions.compiled | regexoptions.ignorecase); // if (rx.ismatch(v)) { return v; //保留图片,<p>,<br> } else { return ""; //过滤掉 } }); }
我这边所有都过滤,所以我直接用正则,不再做匿名委托的保留p和br
content = regex.replace(content, @"/\<span(\sclass\=\s*)*\>\s*\<\/span\>/g", "", regexoptions.ignorecase); content = regex.replace(content, @"<[^>]*>", "", regexoptions.ignorecase); content = content + "。。。";
ps:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:
javascript正则表达式在线测试工具:
正则表达式在线生成工具:
更多关于c#相关内容感兴趣的读者可查看本站专题:《c#正则表达式用法总结》、《c#编码操作技巧总结》、《c#常见控件用法教程》、《winform控件用法总结》、《c#数据结构与算法教程》、《c#面向对象程序设计入门教程》及《c#程序设计之线程使用技巧总结》
希望本文所述对大家c#程序设计有所帮助。