1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 20:24:14 +00:00

Update validators.go

edit mobile regular expression ; add 184 Section No.
This commit is contained in:
peeped 2015-04-02 12:07:12 +08:00
parent 49c0f8906f
commit 8a82e25e85

View File

@ -457,7 +457,7 @@ func (b Base64) GetLimitValue() interface{} {
}
// just for chinese mobile phone number
var mobilePattern = regexp.MustCompile("^((\\+86)|(86))?(1(([35][0-9])|(47)|[8][012356789]))\\d{8}$")
var mobilePattern = regexp.MustCompile("^((\\+86)|(86))?(1(([35][0-9])|(47)|[8][0-9]))\\d{8}$")
type Mobile struct {
Match