C# 判断字符串是否是数字

使用正则表达式:

        /// 
        /// 判断是否是数字  2019年9月22日20:54:40  Dennyhui
        /// 
        /// 
        /// 
        public static bool IsNumeric(string value)
        {
            return Regex.IsMatch(value, @"^[+-]?\d*[.]?\d*$");
        }

 

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