mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 06:40:26 +08:00
13 lines
317 B
Go
13 lines
317 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
|
|
|
|
package utils
|
|
|
|
import "regexp"
|
|
|
|
var mobileRegex = regexp.MustCompile(`^1\d{10}$`)
|
|
|
|
// IsValidMobile validate mobile number
|
|
func IsValidMobile(mobile string) bool {
|
|
return mobileRegex.MatchString(mobile)
|
|
}
|