contains()
--
문자열 내에 다른 문자열이 포함되어 있는지 여부를 확인하는 메서드다.
- 가장 직관적이고 일반적으로 사용하는 메서드
- 대소문자 구분
contains() 메서드 형식
문자열.contains(특정 문자열);
예시 코드
String str = "Hello, world!";
boolean result1 = str.contains("world"); // true
boolean result2 = str.contains("www"); // false
--
'Record > 자바 메서드' 카테고리의 다른 글
문자열, 문자에서 대소문자 여부 및 변경 [ UpperCase(), LowerCase() ] (0) | 2024.08.27 |
---|---|
문자열에서 특정 문자 제거(변경)하기 [ replace(), replaceAll() ] (0) | 2024.08.24 |