java.lang.StringBuffer.lastIndexOf(String str, int fromIndex)方法範例


 java.lang.StringBuffer.lastIndexOf(String str, int fromIndex) 方法返回該字串指定的子字串的最後一次出現處的索引。該引數fromIndex是開始搜尋索引位置。

宣告

以下是java.lang.StringBuffer.lastIndexOf()方法的宣告

public int lastIndexOf(String str, int fromIndex)

引數

  • str -- 要搜尋的字串。

  • fromIndex -- 開始搜尋的索引。

返回值

此方法返回指定子字串的最後一次出現的這個序列中的索引。

異常

  • 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 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 yiibai
last index of i = 12
last index of als = 6
last index of ori = -1