logo

String LastIndexOf(String Str) Method


Show

Description

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.

Syntax

Here is the syntax of this method:

public int lastIndexOf(String str)

Parameters

Here is the detail of parameters −

  • str − a string.

Return Value

  • This method returns the index.

Example

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:

Output

Found Last Index :11

Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.