欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

判断字符串是否是数字

程序员文章站 2022-06-11 15:55:38
...
​
 private bool IsNumber(string s)
 {
     if (string.IsNullOrWhiteSpace(s)) return false;
     const string pattern = "^[0-9]*$";
     Regex rx = new Regex(pattern);
     return rx.IsMatch(s);
}

​