C#去除HTML标签_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C#去除HTML标签

C#去除HTML标签

 2014/12/22 13:25:18  DESTLIVE  程序员俱乐部  我要评论(0)
  • 摘要:publicstaticstringReplaceHtmlTag(stringhtml,intlength=0){stringstrText=System.Text.RegularExpressions.Regex.Replace(html,"<[^>]+>","");strText=System.Text.RegularExpressions.Regex.Replace(strText,"&[^;]+;","");if(length>0&&
  • 标签:
class="brush:csharp;gutter:true;">public static string ReplaceHtmlTag(string html, int length = 0)
{
    string strText = System.Text.RegularExpressions.Regex.Replace(html, "<[^>]+>", "");
    strText = System.Text.RegularExpressions.Regex.Replace(strText, "&[^;]+;", "");

    if (length > 0  && strText.Length > length)
        return strText.Substring(0, length);

    return strText;
}
转载自:http://www.cnblogs.com/youring2/archive/2013/04/03/2997826.html
  • 相关文章
发表评论
用户名: 匿名