Java String.lastIndexOf(String str)

Syntax

String.lastIndexOf(String str) has the following syntax.

public int lastIndexOf(String str)

Example

In the following code shows how to use String.lastIndexOf(String str) method.

 
public class Main {
  public static void main(String args[]) {
    String s = "this is a test from java2s.com.";
/* www. jav  a2 s  . co  m*/
    System.out.println(s);
    System.out.println("lastIndexOf(the) = " + s.lastIndexOf("the"));

  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable