C#判断字符串是否是满足指定位数的小数或整数

  1.          ///   
  2.         /// 判断一个字符串是否为合法整数(不限制长度)  
  3.         ///   
  4.         /// 字符串  
  5.         ///   
  6.         public static bool IsInteger(string s)  
  7.         {  
  8.             string pattern = @"^\d*$";  
  9.             return Regex.IsMatch(s,pattern);  
  10.         }  
  11.         /**////   
  12.         /// 判断一个字符串是否为合法数字(0-32整数)  
  13.         ///   
  14.         /// 字符串  
  15.         ///   
  16.         public static bool IsNumber(string s)  
  17.         {  
  18.             return IsNumber(s,32,0);  
  19.         }  
  20.         /**////   
  21.         /// 判断一个字符串是否为合法数字(指定整数位数和小数位数)  
  22.         ///   
  23.         /// 字符串  
  24.         /// 整数位数  
  25.         /// 小数位数  
  26.         ///   
  27.         public static bool IsNumber(string s,int precision,int scale)  
  28.         {  
  29.             if((precision == 0)&&(scale == 0))  
  30.             {  
  31.                 return false;  
  32.             }  
  33.             string pattern = @"(^\d{1,"+precision+"}";  
  34.             if(scale>0)  
  35.             {  
  36.                 pattern += @"\.\d{0,"+scale+"}$)|"+pattern;  
  37.             }  
  38.             pattern += "$)";  
  39.             return Regex.IsMatch(s,pattern);  
  40.         }  
转载地址:http://www.360doc.com/content/12/0718/09/7622695_224876360.shtml

你可能感兴趣的:(C#)