반응형

한글로만 이루어진 문자열인지 검사하는 함수입니다.

  public static boolean isOnlyHangul(String mberNm) {
    if (mberNm == null) {
      return false;
    }
    return mberNm.matches("^[ㄱ-하-ㅣ가-힣]+$");
  }

 

반응형

+ Recent posts