C# 使用正则表达式去掉字符串中的数字

C# 使用正则表达式去掉字符串中的数字

// 去掉字符串中的数字
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]*", "");
}


C# 使用正则表达式去掉字符串中的数字

上一篇:Intel(R) 82579V网卡驱动程序 for Windows Server 2003 x64


下一篇:机器学习库函数 numpy-MKL-1.8.0.win-amd64-py2.7.exe 64位库函数下载