java.lang.StringBuilder.indexOf(String str, int fromIndex)方法實例
java.lang.StringBuilder.indexOf(String str, int fromIndex) 方法返回此字符串指定的子字符串的第一次出現的索引,從指定的索引處。
聲明
以下是java.lang.StringBuilder.indexOf()方法的聲明
public int indexOf(String str, int fromIndex)
參數
-
str -- 這是要搜索的子字符串。
-
fromIndex -- 從它開始搜索的索引。
返回值
此方法返回此字符串指定的子字符串的第一次出現的索引,從指定的索引處。
異常
-
NullPointerException -- 如果str 為 null.
例子
下麵的例子顯示java.lang.StringBuilder.indexOf()方法的使用。
package com.yiibai; import java.lang.*; public class StringBuilderDemo { public static void main(String[] args) { StringBuilder str = new StringBuilder("programming language"); System.out.println("string = " + str); // returns the index of the specified substring System.out.println("Index of substring = " + str.indexOf("age")); /* returns the index of the specified substring, starting at the specified index */ System.out.println("Index of substring = " + str.indexOf("am",2)); /* returns -1 as the substring is not found starting at the specified index */ System.out.println("Index of substring = " + str.indexOf("am",10)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
string = programming language Index of substring = 17 Index of substring = 5 Index of substring = -1