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


Java 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

相关用法


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