亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

asp.net 過濾圖片標簽的正則

 更新時間:2009年07月18日 13:53:45   作者:  
asp.net 圖片過濾正則實現(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, ""); //過濾frameset
return html;
}

相關(guān)文章

最新評論