标签:正则表达式
// 去掉字符串中的数字
public static string RemoveNumber(string key)
{
return System.Text.RegularExpressions.Regex.Replace(key, @"\d", "");
}
// 去掉字符串中的非数字
public static string RemoveNotNumber(string key)
{
return System.Text.RegularExpressions.Regex.Replace(key, @"[^\d]*", "");
}
标签:正则表达式
原文地址:http://helicon.blog.51cto.com/3926609/1606616