判断一个字符串是否是数字

        public bool IsNum(string Str)
        {
           
            string Rx = @"^[1-9]\d*$";
            if (Regex.IsMatch(Str, Rx))
            {
                return true;
            }
            else
            {
                return false;
            }
            
        }

 

posted @ 2016-05-08 10:35  文洁丫头  阅读(201)  评论(0编辑  收藏  举报