문자열 포함 여부 확인 contains() 문자열이 특정 문자열을 포함하고 있는지 확인한다. 포함하고 있으면 true를, 아니면 false를 반환하며, 대소문자를 구분한다. import java.io.*; public class Main { public static void main(String[] args) { String str = "Hello my name is hectick, not hectic"; System.out.println(str.contains("hello")); //false 출력 System.out.println(str.contains("Hello")); //true 출력 System.out.println(str.contains("hectick")); //true 출력 } } 문자열..