位置:首页 > Java技术 > java.lang > java.lang.StringBuffer.lastIndexOf(String str)方法实例

java.lang.StringBuffer.lastIndexOf(String str)方法实例

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

声明

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

public int lastIndexOf(String str)

参数

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

返回值

如果出现字符串参数1次或以上在这个对象的子字符串,然后将最后一个这样的子字符串的第一个字符索引返回。如果找不到这样的一个子串,则返回-1。

异常

  • NullPointerException -- 如果 str 是 null.

例子

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

package com.yiibai;

import java.lang.*;

public class StringBufferDemo {

  public static void main(String[] args) {
  
    StringBuffer buff = new StringBuffer("tutorials yiibai");
    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 yiibai
last index of a = 6
last index of am = -1