且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

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

更新时间:2022-09-10 14:38:59

/// 去掉字符串中的数字

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,如需转载请自行联系原作者