目前项目因为手机号发短信,需要验证手机号,用正则表达式来解决了这个问题,我在这里主要是作为记录一下。
public static boolean isPhone(String phone,String area_code){
Pattern p = null;
Matcher m = null;
boolean flag = false;
/**
* 大陆手机号验证
*/
if(area_code.equals("0086")){
p = Pattern.compile("^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1})|(17[0-9]{1}))+\\d{8})?$");
m = p.matcher(phone);
flag = m.matches();
}
/**
* 香港手机号(八位数,6或9开头)
*/
if(area_code.equals("00852")){
p = Pattern.compile("^([6|9])\\d{7}$");
m = p.matcher(phone);
flag = m.matches();
}
/**
* 澳门手机号(八位数,6开头)
*/
if(area_code.equals("00853")){
p = Pattern.compile("^[6]\\d{8}$");
m = p.matcher(phone);
flag = m.matches();
}
/**
* 台湾手机号(十位数,09开头)
*/
if(area_code.equals("00886")){
p = Pattern.compile("^([0][9])\\d{8}$");
m = p.matcher(phone);
flag = m.matches();
}
/**
* 新加坡手机号,一般是8位,大都是8和9开头的
*/
if(area_code.equals("0065")){
p = Pattern.compile("^([8|9])\\d{7}$");
m = p.matcher(phone);
flag = m.matches();
}
return flag;
}
}