当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java 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。

异常

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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.String.lastIndexOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。