C#去除HTML標籤
在作網站的時候,用到了去除html標籤的問題,用正則匹配到html標籤,而後replace便可。html
public static string ReplaceHtmlTag(string html, int length = 0)
{
string strText = System.Text.RegularExpressions.Regex.Replace(html, "<[^>]+>", "");
strText = System.Text.RegularExpressions.Regex.Replace(strText, "&[^;]+;", "");markdown
if (length > 0 && strText.Length > length) return strText.Substring(0, length); return strText;
}
這個方法能夠實現去除html標籤的功能。ide
Length參數能夠根據傳入值取固定長度的值。用於生成文章摘要比較方便。網站
來源:https://www.cnblogs.com/youring2/archive/2013/04/03/2997826.htmlcode