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

原文链接: https://www.cnblogs.com/linyechengwei/archive/2010/04/23/1718609.html

/// <summary>
/// 去掉字符串中的数字
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
public static string RemoveNumber(string key)
{
    return System.Text.RegularExpressions.Regex.Replace(key, @"\d", "");
}

/// <summary>
/// 去掉字符串中的非数字
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
public static string RemoveNotNumber(string key)
{
    return System.Text.RegularExpressions.Regex.Replace(key, @"[^\d]*", "");
}

猜你喜欢

转载自blog.csdn.net/yelin042/article/details/101051931
今日推荐