This technique recognizes a String as a row, if the string row occurs one or more times as a substring inside this value, then it revisits the index of the initial character of the last such substring is revisited. If it does not occur as a substring, -1 is returned.
Here is the syntax of this method:
public int lastIndexOf(String str)
Here is the detail of parameters −
import java.io.*; public class Test { public static void main(String args[]) { String Str = new String("Welcome to Intellinuts.com"); String SubStr1 = new String("Tutorials" ); System.out.print("Found Last Index :" ); System.out.println( Str.lastIndexOf( SubStr1 )); } }
This will produce the following result:
Found Last Index :11
Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.