大陆港澳台身份证正则验证

public static boolean getisIdCard(String str) {

        //1.大陆 18 位   可含X
        String Dalu = "([1-9]\\d{5}(18|19|20)\\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\\d{3}[0-9Xx])|([1-9]\\d{5}\\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\\d{3})";
        Pattern p = Pattern.compile(Dalu);
        Matcher m = p.matcher(str);
        boolean matches = m.matches();

        //香港8位  例:  X354670(A)      
        String hongKong = "[A-Za-z]{1}\\d{6}[(\\d)|A]{3}";
        Pattern p2 = Pattern.compile(hongKong);
        Matcher m2 = p2.matcher(str);
        boolean matches2 = m2.matches();

        //台湾10位 例: U193683453  
        String taiWan ="[A-Z]{1}\\d{9}";
        Pattern p3 = Pattern.compile(taiWan);
        Matcher m3 = p3.matcher(str);
        boolean matches3 = m3.matches();


        //澳门8位 例:5686611(1)  
        String maCao = "[1|5|7]\\d{6}[(\\d)]{3}";
        Pattern p1 = Pattern.compile(maCao);
        Matcher m1 = p1.matcher(str);
        boolean matches1 = m1.matches();

        if(matches||matches1||matches2||matches3){
            return true;
        }


        return false;
    }

  

posted @ 2021-05-29 11:42  tc310  阅读(1885)  评论(0编辑  收藏  举报