Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

Java String lastIndexOf() Method

❮ String Methods


Example

Search a string for the last occurrence of "planet":

public class MyClass {
  public static void main(String[] args) {
    String myStr = "Hello planet earth, you are a great planet.";
    System.out.println(myStr.lastIndexOf("planet"));
  }
}

Run example »


Definition and Usage

The lastIndexOf() method returns the position of the last occurrence of specified character(s) in a string.

Tip: Use the indexOf method to return the position of the first occurrence of specified character(s) in a string.


Syntax

There are 4 lastIndexOf() methods:

public int lastIndexOf(String str)
public int lastIndexOf(String str, int fromIndex)
public int lastIndexOf(int char)
public int lastIndexOf(int char, int fromIndex)

Parameter Values

Parameter Description
str A String value, representing the string to search for
fromIndex An int value, representing the index position to start the search from. If omitted, the default value is the length of the string
char An int value, representing a single character, e.g 'A', or a Unicode value

Technical Details

Returns: An int value, representing the index of the first occurrence of the character in the string, or -1 if it never occurs

More Examples

Example

Find the last occurrence of "e" in a string, starting the search at position 5:

public class MyClass {
  public static void main(String[] args) {
    String myStr = "Hello planet earth, you are a great planet.";
    System.out.println(myStr.lastIndexOf("e", 5));
  }
}

Run example »


❮ String Methods