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

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

/// 
/// 判断字符串是否是数字
/// 
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);
}

你可能感兴趣的:(C#,c#,开发语言,后端)