c# 判断字符串是否为数字
2020-12-13 15:44
标签:ar os sp bs tt nbsp 字符串 c c# float floattemp=0; float.TryParse(kf, out floattemp) true则是数字,false则不为数字 控制小数点位数 strLength = floattemp.ToString().Split(‘.‘); strTemp = strLength[1]; c# 判断字符串是否为数字 标签:ar os sp bs tt nbsp 字符串 c c# 原文地址:http://www.cnblogs.com/miraclesakura/p/4076418.html
if (strTemp.Length > 2)
{
err += "高考总分小数点后部分超过2位;";
}