我想把从数据库里面取出来的带有html标签的字符串,只取其中的正文部分

2024-11-17 14:27:31
推荐回答(1个)
回答1:

在做网站的时候,用到了去除html标签的问题,用正则匹配到html标签,然后replace即可。
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;
}