offsetByCodePoints 메소드는 지정된 인덱스에서 codePointOffset 코드포인트로 오프셋 된 문자열 내의 인덱스를 리턴합니다. offsetByCodePoints(int index, int codePointOffset) 공식문서상으로는 Returns the index within this String that is offset from the given index by codePointOffset code point.라고 표현합니다. codePointAt이 아스키코드값을 리턴한다면, offsetByCodePoints는 인덱스 값을 리턴한다는 차이가 있습니다. String s = "saoigd"; System.out.println(s.offsetByCodePoints(1, 3)); 예제의..