String.lastIndexOf(int ch) has the following syntax.
public int lastIndexOf(int ch)
In the following code shows how to use String.lastIndexOf(int ch) 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(t) = " + s.lastIndexOf('t')); } }
The code above generates the following result.