参考 Golang如何去判断字符串是数字还是字符-CSDN论坛 func IsNum(s string) bool { _, err := strconv.ParseFloat(s, 64) return err == nil }