Development Java Tutorial

public class MainClass {
  public static void main(String[] arg) {
    StringBuffer phrase = new StringBuffer("one two three four");
    int position = phrase.lastIndexOf("three", 6);
    System.out.println(position);
  }
}
-1