Files
go-easy-utils/validx/number.go
2025-07-08 15:26:54 +08:00

12 lines
185 B
Go

package validx
import (
"regexp"
)
// IsNumber 验证是否全部为数字
func IsNumber(input string) bool {
reg := regexp.MustCompile("^[0-9]+$")
return reg.MatchString(input)
}