Java.lang.String.lastIndexOf() 方法

描述

java.lang.String.lastIndexOf(int ch, int fromIndex) 方法返回此字符串中指定字符最后一次出现的索引,从指定索引开始向后搜索。


声明

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

public int lastIndexOf(int ch, int fromIndex)

参数

  • ch − 这是字符的值(Unicode 代码点)。

  • fromIndex − 这是开始搜索的索引。 如果它大于或等于该字符串的长度,则其效果与等于小于该字符串的长度一相同:可以搜索整个字符串。 如果为负,则与 -1 具有相同的效果:返回 -1。


返回值

此方法返回此对象表示的字符序列中字符最后一次出现的索引,该索引小于或等于 fromIndex,如果该字符未在该点之前出现,则返回 -1。


异常

NA


示例

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

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

   public static void main(String[] args) {

      String str = "This is tutorialspoint";
   
      /* returns positive value(last occurrence of character t) as character
         is located, which searches character t backward till index 14 */
      System.out.println("last index of letter 't' =  "
         + str.lastIndexOf('t', 14)); 
      
      /* returns -1 as character is not located under the give index,
         which searches character s backward till index 2 */
      System.out.println("last index of letter 's' =  "
         + str.lastIndexOf('s', 2)); 
      
      // returns -1 as character e is not in the string
      System.out.println("last index of letter 'e' =  "
         + str.lastIndexOf('e', 5));
   }
}

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

last index of letter 't' = 10
last index of letter 's' = -1
last index of letter 'e' = -1