c#正则过滤图片标签 asp.net正则过滤的例子

发布时间:2020-10-21编辑:脚本学堂
c# .net用正则来过滤图片的代码,供大家学习参考了。

c# .net用正则来过滤图片的代码,供大家学习参考了。
 

复制代码 代码示例:

///<summary>
///c# .net 正则过滤图片
///<summary>
public static string replaceImgUrl(string html)
{
if (html == null)
return "";

System.Text.RegularExpressions.Regex regex = new System.Text.RegularExpressions.Regex(@"<img[^>]+>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
html = regex.Replace(html, ""); //过滤frameset
return html;
}