1. 程式人生 > >java正則的2中實現形式

java正則的2中實現形式

//正則的2中形式
        //第一個
        String str="462803011";
        String regex = "[3-8][0][0-9]{3,7}";
        System.out.println(str.matches(regex));
        //第二種方式
        
        Pattern p = Pattern.compile(a*b);
        Matcher m = p.matcher("aaaab");
        System.out.println(m.matches());