IT/JAVA

JAVA 문법(대소문자 변경)

구내식당 2023. 3. 17. 09:55

String a = "abcd";

 

a = a.toUpperCase(); // 모든문자 대문자변경

a = a.toLowerCase(); // 모든문자 소문자변경