摘要: ```csharp /// /// 清除文本中Html的标签 /// /// /// protected string ClearHtml(string Content) { Content = ReplaceHtml("&#[^>]*;", "", Content); Content = ReplaceHtml("]*>", "", Content); Content = ReplaceHtml 阅读全文
posted @ 2019-12-23 11:43 TTonlyV5 阅读(280) 评论(0) 推荐(0) 编辑