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 相同:返回 -1。

返回值

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

异常

示例

以下示例显示了 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
java_lang_string.htm
广告