Skip to content

Commit

Permalink
手机段位增加
Browse files Browse the repository at this point in the history
  • Loading branch information
LiqiNew committed Oct 8, 2018
1 parent d507520 commit 1f29594
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ allprojects {
```
**2:依赖MyUtils**<br>
```gradle
compile 'com.github.liqinew:myutils:V.1.1.4'
compile 'com.github.liqinew:myutils:V.1.1.5'
```

### [点击查阅MyUtils-API文档](https://liqinew.github.io/MyUtils/)
Expand Down
2 changes: 1 addition & 1 deletion utils/src/main/java/com/liqi/utils/Validation.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public static boolean isZipNO(String zipString) {
* @return true是符合,false为不符合。
*/
public static boolean matchMobile(String mobile) {
String mobileregex = "^(13[0-9]|14[0-9]|15[0-9]|17[0-9]|18[0-9]|16[0-9])\\d{8}$";
String mobileregex = "^(13[0-9]|14[0-9]|15[0-9]|17[0-9]|18[0-9]|16[0-9]|19[0-9])\\d{8}$";
return match(mobileregex, mobile);
}

Expand Down

0 comments on commit 1f29594

Please sign in to comment.