摘要: C#中,我们有时需要过滤掉字符串中的部分html标签,以下是一些简单的html标签过滤方法,使用的主要方式是正则表达式 public static string ClearHtml(string html) { if(string.IsNullOrEmpty(html)) { return ""; ... 阅读全文
posted @ 2016-08-19 17:55 NightKey 阅读(3659) 评论(0) 推荐(1) 编辑