好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

asp.net 过滤图片标签的正则

代码如下:
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;
}

查看更多关于asp.net 过滤图片标签的正则的详细内容...

  阅读:51次