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

Posted 欣宇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#判断字符串是否是数字相关的知识,希望对你有一定的参考价值。

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

 

以上是关于C#判断字符串是否是数字的主要内容,如果未能解决你的问题,请参考以下文章