java.lang.StringBuilder.lastIndexOf(String str, int fromIndex)方法實例
java.lang.StringBuilder.lastIndexOf(String str, int fromIndex) 方法返回該字符串指定的子字符串的最後一次出現處的索引。該參數fromIndex表示開始搜索的索引。
聲明
以下是java.lang.StringBuilder.lastIndexOf()方法的聲明
public int lastIndexOf(String str, int fromIndex)
參數
-
str -- 這是要搜索的字符串。
-
fromIndex -- 這開始搜索的索引。
返回值
此方法返回指定子字符串的最後一次出現的這個序列中的索引。
異常
-
NullPointerException -- 如果str為null。
例子
下麵的例子顯示java.lang.StringBuilder.lastIndexOf()方法的使用。
package com.yiibai; import java.lang.*; public class StringBuilderDemo { public static void main(String[] args) { StringBuilder str = new StringBuilder("tutorials point"); System.out.println("string = " + str); /* returns the index within this string of the rightmost occurrence of the specified substring */ System.out.println("last index of i = " + str.lastIndexOf("i")); // returns index as the substring is found with fromIndex 10 System.out.print("last index of als = "); System.out.println(str.lastIndexOf("als",10)); // returns -1 as fromIndex 2 can't find the substring System.out.print("last index of ori = "); System.out.println(str.lastIndexOf("ori",2)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
string = tutorials point last index of i = 12 last index of als = 6 last index of ori = -1