최신 핸드폰 번호,전화번호 일치 자바 정규 표현 식

1771 단어 Java
정규 표현 식
오늘 은 휴대 전화 와 전화번호 의 정규 표현 식 을 가 져 다 드 리 겠 습 니 다.쓸데없는 말 은 그만 하고 바로 코드 를 올 리 겠 습 니 다.
핸드폰 번호 일치:
/**
      *       
      *
      *      :139、138、137、136、135、134、150、151、152、157、158、159、182、183、187、188、147、182
      *      :130、131、132、136、185、186、145
      *      :133、153、180、189、177
      *
      * @param cellphone
      * @return
      */
    public static boolean checkCellphone(String cellphone) {
        String regex = "^((13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(18[0,1,2,5-9])|(177))\\d{8}$";
        Pattern pattern=Pattern.compile(regex);
        Matcher matcher=pattern.matcher(cellphone);
        return matcher.matches();
    }

고정 전화번호 일치:
 /**
      *       
      * @param telephone
      * @return
      */
    public static boolean checkTelephone(String telephone) {
        String regex = "^(0\\d{2}-\\d{8}(-\\d{1,4})?)|(0\\d{3}-\\d{7,8}(-\\d{1,4})?)$";
        Pattern pattern=Pattern.compile(regex);
        Matcher matcher=pattern.matcher(telephone);
        return matcher.matches();
    }

만약 또 다른 최신 번호 구간 이 있다 면,번 거 로 우 시 겠 지만 모두 제기 해 주 십시오.

좋은 웹페이지 즐겨찾기