StringBuilder.offsetByCodePoints(int index, int codePointOffset) has the following syntax.
public int offsetByCodePoints(int index, int codePointOffset)
In the following code shows how to use StringBuilder.offsetByCodePoints(int index, int codePointOffset) method.
public class Main { /*from w ww .j a v a2s .c o m*/ public static void main(String[] arg) { StringBuilder buffer = new StringBuilder("from java2s.com"); System.out.println(buffer.offsetByCodePoints(1,2)); } }
The code above generates the following result.