c#winform判断是否为数字型字符串
//判断是否为数字型字符串
System.Text.RegularExpressions.Regex rex = new System.Text.RegularExpressions.Regex(@"^\d+$");
//判断是否为数字型字符串 System.Text.RegularExpressions.Regex rex = new System.Text.RegularExpressions.Regex(@"^\d+$"); if (rex.IsMatch(battery_remain_str)) { battery_remain_int = Convert.ToInt32(battery_remain_str); }
欢迎讨论,相互学习。
cdtxw@foxmail.com