Record/자바 메서드

isUpperCase(), isLowerCase() --문자 타입의 해당 문자가 대문자인지 소문자인지 확인하는 메서드다. isUpperCase()  :  해당 문자는 대문자인가?isLowerCase()  :  해당 문자는 소문자인가? 형식Character.isUpperCase(문자); 예시char ch = 'a';String str = "Hello";boolean check1 = Character.isUpperCase(ch); // falseboolean check2 = Character.isUpperCase(str.charAt(0)); // true--    toUpperCase(), toLowerCase() --문자 또는 문자열 전체를 대문자 또는 소문자로 변경해 주는 메서드다. toUpperCase..
contains() --문자열 내에 다른 문자열이 포함되어 있는지 여부를 확인하는 메서드다. 가장 직관적이고 일반적으로 사용하는 메서드대소문자 구분 contains() 메서드 형식문자열.contains(특정 문자열); 예시 코드String str = "Hello, world!";boolean result1 = str.contains("world"); // trueboolean result2 = str.contains("www"); // false--
replace() 주어진 문자열(String)에서 특정 문자를 다른 문자로 치환 or 특정 문자열을 다른 문자열로 치환할 수 있다.""로 대체하면 제거되는 결과와 동일하다. 다만 정규식을 사용할 수 없어 한 번에 하나의 문자나 문자열에 대해서만 치환이 가능하다. String str = "hello world";char target = 'o';// target 문자를 빈 문자열로 대체 (제거)String result = str.replace(Character.toString(target), "");// String result = str.replace("o", "");System.out.println(result); // "hell wrld"    replaceAll() 주어진 문자열(String)에서 ..
아-니지
'Record/자바 메서드' 카테고리의 글 목록