String 문자열을 자르는(나누는) 방법을 알아보자. String 클래스에서 지원하는 3가지 메서드를 사용해볼 것이다. ● String.substring() ● String.split() ● String.charAt() substring() String의 인덱스를 기준으로 문자열을 잘라서 리턴하며, 다음과 같이 2가지 사용법이 존재한다. 문법) // beginIndex 부터 자름 String.substring(int beginIndex); // beginIndex 부터 endIndex 까지 자름 String.substring(int beginIndex, int endIndex); ex) String str = "Oscar"; // str의 인덱스 1번 부터 자르고 출력 System.out.println..