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


Java Java.lang.StringBuffer.lastIndexOf()用法及代码示例



描述

这个java.lang.StringBuffer.lastIndexOf(String str, int fromIndex) 方法返回此字符串中最后一次出现的指定子字符串的索引。参数fromIndex是开始搜索的索引。

声明

以下是声明java.lang.StringBuffer.lastIndexOf()方法

public int lastIndexOf(String str, int fromIndex)

参数

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

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

返回值

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

异常

NullPointerException- 如果 str 为空。

示例

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

package com.tutorialspoint;

import java.lang.*;

public class StringBufferDemo {

   public static void main(String[] args) {
  
      StringBuffer buff = new StringBuffer("tutorials point");
      System.out.println("buffer = " + buff);

      /* returns the index within this string of the rightmost occurrence of the
         specified substring */
      System.out.println("last index of i = " + buff.lastIndexOf("i"));
  
      // returns index as the substring is found with fromIndex 10
      System.out.print("last index of als = ");
      System.out.println(buff.lastIndexOf("als",10));

      // returns -1 as fromIndex 2 can't find the substring 
      System.out.print("last index of ori = "); 
      System.out.println(buff.lastIndexOf("ori",2));  
   }
}

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

buffer = tutorials point
last index of i = 12
last index of als = 6
last index of ori = -1

相关用法


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