如何在Golang中检查字符串值是否为整数?

就像是

v := "4"
if isInt(v) {
  fmt.Println("We have an int,we can safely cast this with strconv")
}

注意:我知道strconv.Atoi返回一个错误,但是有没有其他的功能呢?

strconv.Atoi的问题是它将返回7为“a7”

正如你所说,你可以使用strconv.Atoi为此。
if _,err := strconv.Atoi(v); err == nil {
    fmt.Printf("%q looks like a number.\n",v)
}

您可以在ScanInts模式下使用scanner.Scanner(从文本/扫描仪),或使用正则表达式验证字符串,但Atoi是该作业的正确工具。