天天看点

验证数字字符串

不多说了,别人的blog上kiang来的.

验证数字字符串

static   bool  IsNumeric( string  str)  

验证数字字符串
验证数字字符串
验证数字字符串

{   

验证数字字符串

   System.Text.RegularExpressions.Regex reg1  

验证数字字符串

       = new System.Text.RegularExpressions.Regex(@"^[-]?\d+[.]?\d*$");   

验证数字字符串

   return reg1.IsMatch(str);  

验证数字字符串

}  

原文:http://blog.csdn.net/wxmxiaoming/archive/2005/10/14/503443.aspx