現(xiàn)在一般應用都要用戶綁定手機號或使用手機號登陸丈咐,這其中就需要對手機號進行驗證馍惹。
前幾天一同事說他辦一個移動手機號是199開頭的躺率,我意識到我之前應用中驗證手機號的方法需要修改了,然后我就去查了下万矾,最近開放大號段還有198悼吱、166.下面是最新的手機號段。
1513653920(1).jpg
1513655017(1).jpg
代碼如下 :
public class ValidationUtils {
public static boolean isMobile(String mobile) {
String str = mobile;
String pattern = "^(13[0-9]|15[012356789]|17[013678]|18[0-9]|14[57]|19[89]|166)[0-9]{8}";
Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(str);
return m.matches();
}
}
如有錯誤歡迎指正良狈。