在asp.net网页中图片标签过滤怎么写
来源:爱站网时间:2022-03-10编辑:网友分享
本文今天给大家带来有关于“在asp.net网页中图片标签过滤怎么写”的文章,曾在操作过程中出现问题的小伙伴一定不要错过这篇文章,爱站技术频道小编提供的资料都是对你们有所帮助的。
复制代码 代码如下:
public static string replaceImgUrl(string html)
{
if (html == null)
return "";
System.Text.RegularExpressions.Regex regex = new System.Text.RegularExpressions.Regex(@"\]+\>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
html = regex.Replace(html, ""); //过滤frameset
return html;
}
上述文章代码不知道小伙伴们都看明白了没有,其实很多编程内容没有想象中那么复杂,遇到问题多问多看,一定能从中找到解决方法。更多精彩资讯尽在js.aizhan.com。
上一篇:asp.net需要登录后才能下载
下一篇:.net如何获取CPU序列号