Java Data Type Tutorial - Java StringBuilder .lastIndexOf ( String str, int fromIndex)








Syntax

StringBuilder.lastIndexOf(String str, int fromIndex) has the following syntax.

public int lastIndexOf(String str,  int fromIndex)

Example

In the following code shows how to use StringBuilder.lastIndexOf(String str, int fromIndex) method.

/*from w  w w  . j  a  v a  2  s  .c om*/
public class Main {

  public static void main(String[] arg) {

    StringBuilder buffer = new StringBuilder("from java2s.com");
    
    System.out.println(buffer.lastIndexOf("a",10));
  }

}

The code above generates the following result.