摘要: /// /// 去掉字符串中的数字/// /// /// public static string RemoveNumber(string key){ return System.Text.RegularExpressions.Regex.Replace(key, @"\d", "");}/// /... 阅读全文
posted @ 2014-10-21 15:04 xingbo 阅读(1086) 评论(0) 推荐(0) 编辑