java.lang.StringBuilder.lastIndexOf(String str)方法實例
java.lang.StringBuilder.lastIndexOf(String str) 方法返回該字符串指定的子字符串的最右邊出現處的索引。
聲明
以下是java.lang.StringBuilder.lastIndexOf()方法的聲明
public int lastIndexOf(String str)
參數
-
str -- 這是要搜索的字符串。
返回值
此方法返回最後一個子字符串的第一個字符的索引,如果字符串參數匹配一次或多次在這個對象中的子串。如果它不匹配一個子串,則返回-1。
異常
-
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 yiibai"); 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 a = " + str.lastIndexOf("a")); // returns -1 as substring am is not found System.out.println("last index of am = " + str.lastIndexOf("am")); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
string = tutorials yiiai last Index of a = 6 last index of am = -1