码迷,mamicode.com
首页 > Web开发 > 详细

过滤HTML

时间:2014-07-01 12:50:38      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:html   for   htm   io   new   div   

过滤HTML

 

public static string NoHTML(string html)
{
string[] strArray2 = new string[] { "font", "span", "div", "p" };
foreach (string str in strArray2)
{
string pattern = string.Format("</?{0}[^>]*?>", str);
html = Regex.Replace(html, pattern, "", RegexOptions.IgnoreCase);
html = html.Replace("&nbsp;", " ");
}
return html;
}

 

过滤HTML,布布扣,bubuko.com

过滤HTML

标签:html   for   htm   io   new   div   

原文地址:http://www.cnblogs.com/upshania/p/3817256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!