본문 바로가기
Java

[Java] 문자열의 모든 요소를 소문자, 대문자로 바꿔주는 toLowerCase(), toUpperCase()

by dong_su 2023. 12. 20.

 

모든 요소를 소문자로 바꿔주는 toLowerCase(),  대문자로 바꿔주는 toUpperCase()

str1 = "Abc@Naver.com";

System.out.println(str1.toLowerCase());
System.out.println(str1.toUpperCase());

// 출력 : abc@naver.com , ABC@NAVER.COM