剑轩

C#截取文章内容的摘要信息

电脑版发表于:2018/12/30 21:55


思路:通过正则表达式去掉html标签,去掉空格,去掉换行等之后在截取前几十个字符就可以了。


一个简版的方法:

public static string FilterHTML(string HTMLStr)
{
  if (!string.IsNullOrEmpty(HTMLStr))
    return System.Text.RegularExpressions.Regex.Replace(HTMLStr, "<[^>]*>|&nbsp;", "");
  else
    return "";
}


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢