2019年1月23日17:55:17 更新
中国电信号段
133、149、153、173、177、180、181、189、191、199
中国联通号段
130、131、132、145、155、156、166、175、176、185、186
中国移动号段
134(0-8)、135、136、137、138、139、147、150、151、152、157、158、159、178、182、183、184、187、188、198
虚拟运营商
电信:1700、1701、1702、162、1410(物联网)
移动:1703、1705、1706、165、172、1440(物联网)
联通:1704、1707、1708、1709、171、167
卫星通信:1349(电信) 146、17400-17405(联通) 148(移动)
号段总结:
130-139
141
144-149
150-153
155-159
162
165-167
170-173
175-178
180-189
191
198
199
public static boolean isPhone(String phone) {
String regex = "^((13[0-9])|(14[1]|[4-9])|(15([0-3]|[5-9]))|(16[2]|[5-7])|(17[0-3]|[5-8])|(18[0-9])|(19[1|8|9]))\\d{8}$";
if (phone.length() != 11) {
System.out.println("手机号应为11位数");
return false;
} else {
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(phone);
boolean isMatch = m.matches();
if (!isMatch) {
System.out.println("请填入正确的手机号");
}
return isMatch;
}
}