當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.StringBuffer.indexOf()用法及代碼示例



描述

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

聲明

以下是聲明java.lang.StringBuffer.indexOf()方法

public int indexOf(String str, int fromIndex)

參數

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

  • fromIndex- 這是開始搜索的索引。

返回值

此方法返回此字符串中第一次出現指定子字符串的索引,從指定索引開始。

異常

NullPointerException- 如果 str 為空

示例

下麵的例子展示了 java.lang.StringBuffer.indexOf() 方法的用法。

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StringBuffer.indexOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。