728x90
반응형
[ 대소문자 변환 ]
○ 문자열을 모두 대문자로 변경 : toUpperCase()
String str = "Apple";
System.out.println(str.toUpperCase());
==> APPLE
○ 문자열을 모두 소문자로 변경 : toLowerCase()
String str = "Apple";
System.out.println(str.toLoowerCase());
==> apple
[ 대소문자 비교 ]
○ 대소문자를 구분하여 비교 : equals()
String str = "Apple";
System.out.println("apple".equals(str));
==> false
○ 대소문자 구분없이 비교 : equalsIgnoreCase()
String str = "Apple";
System.out.println("apple".equalsIgnoreCase(str));
==> true
728x90
'스마트웹앱콘텐츠전문가 > JAVA' 카테고리의 다른 글
[JAVA]문자열을 배열로 만들기 해보자! (0) | 2023.12.13 |
---|---|
[JAVA]서버에서 RequestBody 읽기 (0) | 2021.08.19 |
파일 리스트 출력 (0) | 2021.05.10 |
파일 삭제 (0) | 2021.05.10 |
Calendar를 이용한 날짜 판별 (0) | 2021.05.10 |