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 }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM