asp.net 过滤图片标签的正则
来源:不详 责任编辑:栏目编辑 发表时间:2013-07-01 12:16 点击:次
复制代码 代码如下:
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;
}
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>