Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

고마구의 개발 블로그

240828 19주차 수요일 - Spring boot 03 본문

KDT풀스택과정 공부

240828 19주차 수요일 - Spring boot 03

고마구 2024. 8. 28. 18:14

합치기전 vo,dto 페이징 수정


String id = "예시123ABC";

if (Pattern.matches("^[a-zA-Z]*$", id)) {
    System.out.println("영어 알파벳만 포함되어 있습니다.");
} else {
    if (Pattern.matches(".*\\d.*", id)) {
        System.out.println("숫자가 포함되어 있습니다.");
    }
    if (Pattern.matches(".*[ㄱ-ㅎㅏ-ㅣ가-힣]+.*", id)) {
        System.out.println("한글이 포함되어 있습니다.");
    }
}