2011年9月24日
摘要: private static void Replace(string html){if (html.IndexOf(',') > 0){ html = html.Substring(0, html.IndexOf(','));}html = Regex.Replace(html, @"\s|[a-z]|[\u4e00-\u9fa5]", string.Empty, RegexOptions.IgnoreCase);//html = Regex.Replace(html, @"[a-z]", string.Empty, 阅读全文
posted @ 2011-09-24 00:31 gotolovo 阅读(193) 评论(0) 推荐(0) 编辑