摘要: C# : public string RemoveHTML(string html) { html = Regex.Replace(html, @"", "", RegexOptions.IgnoreCase); html = Regex.Replace(html, @"]*)>", "", RegexOptions.IgnoreCase); html = Regex.Replace(html, @"([\r\n])[\s]+", "", RegexOptions.Ig 阅读全文
posted @ 2013-12-06 15:42 王者杂货铺 阅读(368) 评论(0) 推荐(0) 编辑