验证数字字符串

不多说了,别人的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
posted on 2005-10-17 11:14  Na57  阅读(412)  评论(0编辑  收藏  举报