欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp.net 過(guò)濾圖片標(biāo)簽的正則

 更新時(shí)間:2009年07月18日 13:53:45   作者:  
asp.net 圖片過(guò)濾正則實(shí)現(xiàn)代碼。
復(fù)制代碼 代碼如下:

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, ""); //過(guò)濾frameset
return html;
}

相關(guān)文章

最新評(píng)論