Java.lang.String.lastIndexOf() 方法

描述

java.lang.String.lastIndexOf(String str, int fromIndex) 方法返回此字符串中指定子字符串最后一次出现的索引,从指定索引开始向后搜索。 返回的整数是最大值 k 使得 −

k >= Math.min(fromIndex, this.length()) && this.startsWith(str, k),如果不存在这样的 k 值,则返回 -1。


声明

以下是 java.lang.String.lastIndexOf() 方法的声明。

public int lastIndexOf(String str, int fromIndex)

参数

  • str − 这是要搜索的子字符串。

  • fromIndex − 这是开始搜索的索引。


返回值

此方法返回此字符串中指定子字符串最后一次出现的索引。


异常

NA


示例

下面的例子展示了 java.lang.String.lastIndexOf() 方法的使用。

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));     
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

index = 15
index = -1