Maison > Article > développement back-end > Comment déterminer si une chaîne est un nombre en Golang
Méthode de Golang pour déterminer s'il s'agit d'un nombre :
IsNumber détermine si r est un caractère numérique (catégorie N)
func IsNumber(r rune) bool func main() { s := "Hello 123123!" for _, r := range s { fmt.Printf("%c = %v\n", r, unicode.IsNumber(r)) } // 123123 = true }
IsDigit détermine r S'il s'agit d'un caractère numérique décimal
func IsDigit(r rune) bool func main() { s := "Hello 123123!" for _, r := range s { fmt.Printf("%c = %v\n", r, unicode.IsDigit(r)) } // 123123 = true }
Pour plus de connaissances sur Golang, veuillez faire attention à la colonne tutoriel Golang.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!