net 正则表达式过滤 img 图片

前端之家收集整理的这篇文章主要介绍了net 正则表达式过滤 img 图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


using System.Text.RegularExpressions;


public static string NoImage(string Htmlstring)

{

Htmlstring = Regex.Replace(Htmlstring,@"<img[^>]*?/>","",
RegexOptions.IgnoreCase);
return Htmlstring;

}

原文链接:https://www.f2er.com/regex/358266.html

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