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