01. 문자열(전반전) (2:58:30)02. 문자열(후반전) (3:10:56)03. 문자열 비교 (3:22:07)04. 특수 문자 (3:32:51) (3:44:00) 문자열 전반전(길이, 대소문자 변환, 포함 관계)public class _01_String1 { public static void main(String[] args) { String s = "I like Java and Phyton and C."; System.out.println(s); // 문자열의 길이 System.out.println(s.length()); // 29 // 대소문자 변환 System.out.println(s.toUpperCase()); ..