- 增加[中国广电]验证
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

master v1.0.5
李光春 2 years ago
parent 6d7e135992
commit ab275ef276

@ -45,5 +45,15 @@ func TestChinaUnicomNumber(t *testing.T) {
func TestChinaTelecomNumber(t *testing.T) {
t.Log(goverify.ChinaTelecomNumber("13800138000"))
}
// TestChinaBroadnetNumber 验证中国广电手机号码
func TestChinaBroadnetNumber(t *testing.T) {
t.Log(goverify.ChinaBroadnetNumber("13800138000"))
}
// TestChinaVirtualNumber 验证虚拟运营商手机号码
func TestChinaVirtualNumber(t *testing.T) {
t.Log(goverify.ChinaVirtualNumber("13800138000"))
}
```

@ -5,10 +5,11 @@ import (
)
const (
mobile = "mobile" // 中国移动
unicom = "unicom" // 中国联通
telecom = "telecom" // 中国电信
virtual = "virtual" // 虚拟
Mobile = "mobile" // 中国移动
Unicom = "unicom" // 中国联通
Telecom = "telecom" // 中国电信
Broadnet = "broadnet" // 中国广电
Virtual = "virtual" // 虚拟
)
// ChinaMobile 验证手机号码
@ -18,19 +19,23 @@ const (
func ChinaMobile(number string) (status bool, operator string) {
status = ChinaMobileNumber(number) // 中国移动运营商
if status {
return status, mobile
return status, Mobile
}
status = ChinaUnicomNumber(number) // 中国联通运营商
if status {
return status, unicom
return status, Unicom
}
status = ChinaTelecomNumber(number) // 中国电信运营商
if status {
return status, telecom
return status, Telecom
}
status = ChinaBroadnetNumber(number) // 中国广电运营商
if status {
return status, Broadnet
}
status = ChinaVirtualNumber(number) // 虚拟运营商
if status {
return status, virtual
return status, Virtual
}
return
}
@ -62,12 +67,20 @@ func ChinaTelecomNumber(number string) bool {
return reg.MatchString(number)
}
// ChinaBroadnetNumber 验证中国广电手机号码
// https://www.qqzeng.com/tongji.html
// 广电192
func ChinaBroadnetNumber(number string) bool {
regular := "^[1](([9][2]))[0-9]{8}$"
reg := regexp.MustCompile(regular)
return reg.MatchString(number)
}
// ChinaVirtualNumber 验证虚拟运营商手机号码
// https://www.qqzeng.com/tongji.html
// 移动/联通/电信: 162 165 167 170 171
// 广电192
func ChinaVirtualNumber(number string) bool {
regular := "^[1](([6][2,5,7])|([7][0-1])|([9][2]))[0-9]{8}$"
regular := "^[1](([6][2,5,7])|([7][0-1]))[0-9]{8}$"
reg := regexp.MustCompile(regular)
return reg.MatchString(number)
}

@ -5,6 +5,7 @@ import (
"testing"
)
// TestChinaMobile 验证手机号码
func TestChinaMobile(t *testing.T) {
for i := 1; i <= 1; i++ {
for ii := 0; ii <= 9; ii++ {
@ -26,6 +27,7 @@ func BenchmarkChinaMobile(b *testing.B) {
}
}
// TestChinaMobileNumber 验证中国移动手机号码
func TestChinaMobileNumber(t *testing.T) {
for i := 1; i <= 1; i++ {
for ii := 0; ii <= 9; ii++ {
@ -40,6 +42,7 @@ func TestChinaMobileNumber(t *testing.T) {
}
}
// TestChinaUnicomNumber 验证中国联通手机号码
func TestChinaUnicomNumber(t *testing.T) {
for i := 1; i <= 1; i++ {
for ii := 0; ii <= 9; ii++ {
@ -54,6 +57,7 @@ func TestChinaUnicomNumber(t *testing.T) {
}
}
// TestChinaTelecomNumber 验证中国电信手机号码
func TestChinaTelecomNumber(t *testing.T) {
for i := 1; i <= 1; i++ {
for ii := 0; ii <= 9; ii++ {
@ -68,6 +72,22 @@ func TestChinaTelecomNumber(t *testing.T) {
}
}
// TestChinaBroadnetNumber 验证中国广电手机号码
func TestChinaBroadnetNumber(t *testing.T) {
for i := 1; i <= 1; i++ {
for ii := 0; ii <= 9; ii++ {
for iii := 0; iii <= 9; iii++ {
one := i
two := ii
three := iii
number := fmt.Sprintf("%d%d%d00138000", one, two, three)
t.Logf("[中国广电]%s 状态:%v", number, ChinaBroadnetNumber(number))
}
}
}
}
// TestChinaVirtualNumber 验证虚拟运营商手机号码
func TestChinaVirtualNumber(t *testing.T) {
for i := 1; i <= 1; i++ {
for ii := 0; ii <= 9; ii++ {

@ -1,3 +1,3 @@
package goverify
const Version = "1.0.4"
const Version = "1.0.5"

Loading…
Cancel
Save