码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2016-12-24 13:35:00      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:ace   static   stat   bool   pac   return   ret   isnull   class   

 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#判断字符串是否是数字

标签:ace   static   stat   bool   pac   return   ret   isnull   class   

原文地址:http://www.cnblogs.com/zhang625161495/p/6216992.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!