목록replace (1)
Developer_Neo
각종 함수들
문자열 비교 - ___.equals(~~~) public class Example{ public static void main(){ String str =""; if(str.equals("")) System.out.println("empty value"); } } 문자열 길이 - ___.length() public class Example{ public static void main(){ String word ="random"; System.out.println(word.length()); // 출력결과 : 6 } } 문자열 소문자/ 대문자로 변경 - ___.toLowerCase() / ___.toUpperCase() public class Example{ public static void main(){..
프로그래밍/Java
2022. 7. 7. 17:41