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


java.lang.StringBuffer.indexOf(String str, int fromIndex) 方法返回此字串指定的子字串的第一次出現的索引,從指定的索引處。fromIndex引數是開始搜尋的索引。

宣告

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

public int indexOf(String str, int fromIndex)

引數

  • str -- 這是要搜尋的子字串。

  • fromIndex -- 從這裡開始搜尋的索引。

返回值

此方法返回從指定的索引處此字串指定的子字串第一次出現的索引。

異常

  • NullPointerException -- 如果 str 為 null

例子

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

package com.yiibai;

import java.lang.*;

public class StringBufferDemo {

  public static void main(String[] args) {
  
    StringBuffer buff = new StringBuffer("programming language");
    System.out.println("buffer = " + buff);
  
    // returns the index of the specified substring
    System.out.println("Index of substring = " + buff.indexOf("age"));
  
    /* returns the index of the specified substring, starting at 
    the specified index */
    System.out.println("Index of substring = " + buff.indexOf("am",2));
  
    /* returns -1 as the substring is not found starting at the
    specified index */
    System.out.println("Index of substring = " + buff.indexOf("am",10)); 
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

buffer = programming language
Index of substring = 17
Index of substring = 5
Index of substring = -1