Net Core教程

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

本文主要是介绍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

这篇关于C#判断字符串是否为全数字的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!