摘要: /// <summary> /// 去除HTML标记 /// </summary> /// <param name="NoHTML">包括HTML的源码</param> /// <returns>已经去除后的文字</returns> public static string RemoveHTMLCode(string HtmlCode) { //删除脚本 HtmlCode = Regex.Replace(HtmlCode, @"<script[^>]*?>.*?</sc 阅读全文
posted @ 2012-04-10 09:51 yyutudou 阅读(573) 评论(0) 推荐(0) 编辑