///
去掉字符串中的数字
public static string RemoveNumber( string key)
{
return Regex.Replace(key, @" \d ", "");
}
// 去掉字符串中的非数字
public static string RemoveNotNumber( string key)
{
return Regex.Replace(key, @" [^\d]* ", "");
}
本文转自94cool博客园博客,原文链接:http://www.cnblogs.com/94cool/p/4332957.html,如需转载请自行联系原作者
public static string RemoveNumber( string key)
{
return Regex.Replace(key, @" \d ", "");
}
// 去掉字符串中的非数字
public static string RemoveNotNumber( string key)
{
return Regex.Replace(key, @" [^\d]* ", "");
}