asp.net 过滤图片标签的正则
程序员文章站
2024-03-09 08:07:11
复制代码 代码如下:public static string replaceimgurl(string html) { if (html == null) return "...
复制代码 代码如下:
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;
}