Java tutorial
public class Main { public static void main(String[] args) { String str = "java2s.com"; System.out.println("string = " + str); // returns the index within this String int retval = str.offsetByCodePoints(2, 4); // prints the index System.out.println("index = " + retval); } }