检查字符串是否是int golang

前端之家收集整理的这篇文章主要介绍了检查字符串是否是int golang前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在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是该作业的正确工具。

原文链接:https://www.f2er.com/go/187085.html

猜你在找的Go相关文章