
- Java.lang Package classes
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package extras
- Java.lang - Interfaces
- Java.lang - Errors
- Java.lang - Exceptions
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java.lang.String.lastIndexOf() Method
Description
The java.lang.String.lastIndexOf(String str, int fromIndex) method returns the index within this string of the last occurrence of the specified substring, searching backward starting at the specified index. The integer returned is the largest value k such that −
k >= Math.min(fromIndex, this.length()) && this.startsWith(str, k), if no such value of k exists, then -1 is returned.
Declaration
Following is the declaration for java.lang.String.lastIndexOf() method
public int lastIndexOf(String str, int fromIndex)
Parameters
str − This is the substring to search for.
fromIndex − This is the index to start the search from.
Return Value
This method returns the index within this string of the last occurrence of the specified substring.
Exception
NA
Example
The following example shows the usage of java.lang.String.lastIndexOf() method.
package com.tutorialspoint; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = "Collections of tutorials at tutorials point"; /* search starts from index 17 and if located it returns the index of the first character of the last substring "tutorials" */ System.out.println("index = " + str1.lastIndexOf("tutorials", 17)); /* search starts from index 9 and returns -1 as substring "admin" is not located */ System.out.println("index = " + str1.lastIndexOf("admin", 9)); } }
Let us compile and run the above program, this will produce the following result −
index = 15 index = -1