码迷,mamicode.com
首页 > Windows程序 > 详细

C#去除HTML标签

时间:2017-02-17 15:31:40      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:res   com   array   return   collect   html标签   targe   多维数组   .text   

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

参考页面:

http://www.yuanjiaocheng.net/CSharp/Csharp-stringbuilder.html

http://www.yuanjiaocheng.net/CSharp/csharp-array.html

http://www.yuanjiaocheng.net/CSharp/Csharp-multi-dimensional-array.html

http://www.yuanjiaocheng.net/CSharp/Csharp-jagged-array.html

http://www.yuanjiaocheng.net/CSharp/Csharp-collection.html

C#去除HTML标签

标签:res   com   array   return   collect   html标签   targe   多维数组   .text   

原文地址:http://www.cnblogs.com/dongqidongqi/p/6409606.html

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