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.
/*ww w.j a v a 2 s .com*/
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.