///
去掉字符串中的數字
public static string RemoveNumber( string key)
{
return Regex.Replace(key, @" \d ", "");
}
// 去掉字符串中的非數字
public static string RemoveNotNumber( string key)
{
return Regex.Replace(key, @" [^\d]* ", "");
}
public static string RemoveNumber( string key)
{
return Regex.Replace(key, @" \d ", "");
}
// 去掉字符串中的非數字
public static string RemoveNotNumber( string key)
{
return Regex.Replace(key, @" [^\d]* ", "");
}