摘要: C# 使用正则表达式去掉字符串中的数字 /// /// 去掉字符串中的数字/// /// /// public static string RemoveNumber(string key){ return System.Text.RegularExpressions.Regex.Replace(key, @"\d", "");}/// /// 去掉字符串中的非数字/// /// /// public static string RemoveNotNumber(string key){ return System.Text.RegularExpressio 阅读全文
posted @ 2011-01-13 16:11 DODUI 阅读(1164) 评论(0) 推荐(1)