欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2024-03-11 12:20:31
复制代码 代码如下: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;
}