name.length()
name.equals("momo")
System.out.println(address.toUpperCase());
System.out.println(name.toLowerCase());
예외로 isUpperCase, isLowerCase 가 있음 대문자인지 소문자인지 구분하여 bollean값을 리턴
int i =0;
System.out.println("name.charAt(0) = " + name.charAt(i));
System.out.println(email.contains("gmail"));
System.out.println(email.startsWith("com"));
System.out.println(email.endsWith("kor"));
System.out.println(클래스명.indexOf("str 찾고싶은문자열", int어느 위치부터 찾고싶은지));
클래스명.replace("kor", "KOREA");
클래스명.substring(22);
클래스명.substring(22, 35);