String.lastIndexOf(String str, int fromIndex) has the following syntax.
public int lastIndexOf(String str, int fromIndex)
In the following code shows how to use String.lastIndexOf(String str, int fromIndex) method.
public class Main { public static void main(String args[]) { String s = "this is a test from java2s.com."; System.out.println(s); System.out.println("lastIndexOf(the, 60) = " + s.lastIndexOf("the", 60)); } }
The code above generates the following result.