C#判断字符串是否为全数字

C#判断字符串是否为全数字

/// <summary>
/// 判断字符串是否是数字
/// </summary>
public static bool IsNumber(string s)
{
    if (string.IsNullOrWhiteSpace(s)) return false;
    const string pattern = "^[0-9]*$";
    Regex rx = new Regex(pattern);
    return rx.IsMatch(s);
}

转载自:https://www.cnblogs.com/zhang625161495/p/6216992.html

上一篇:java正则表达式四种常用的处理方式(匹配、分割、替代、获取)


下一篇:Android 常用正则表达式,阿里巴巴内部spring宝典意外流出