手机号正则判断

public class YanZhengUtils {

	
    public static boolean isMobileNO(String mobile) {
//正则表达式
        String telRegex = "^((13[0-9])|(14[5,7,9])|(15[^4])|(18[0-9])|(17[0,1,3,5,6,7,8]))\\d{8}$";
//判断
        if (TextUtils.isEmpty(mobile))
            return false;
        else
            return mobile.matches(telRegex);


    }

}

你可能感兴趣的:(手机号正则判断)