Java.lang.StringBuffer.lastIndexOf() 方法

描述

java.lang.StringBuffer.lastIndexOf(String str) 方法返回该字符串中指定子字符串最右边出现的索引。


声明

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

public int lastIndexOf(String str)

参数

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


返回值

如果字符串参数在此对象中作为子字符串出现一次或多次,则返回最后一个此类子字符串的第一个字符的索引。 如果它不作为子字符串出现,则返回 -1。


异常

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 a = " + buff.lastIndexOf("a"));

      // returns -1 as substring am is not found
      System.out.println("last index of am = " + buff.lastIndexOf("am"));
   }
}

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

buffer = tutorials point
last index of a = 6
last index of am = -1