判断字符串是否是数字

 1 /// <summary>
 2 /// 判断字符串是否是数字
 3 /// </summary>
 4 public static bool IsNumber(string str)
 5 {
 6   if (string.IsNullOrWhiteSpace(str)) return false;
 7   const string pattern = "^[0-9]*$";//正则表达式,同理:可用于其他数据的验证
 8   Regex rx = new Regex(pattern);
 9   return rx.IsMatch(str);
10 }

 

posted @ 2019-01-14 13:38  醉酒三分醒  阅读(144)  评论(0编辑  收藏  举报