java.lang.String.lastIndexOf(int ch, int fromIndex) 方法返回此字串指定字元的最後出現處的索引,向後搜尋從指定的索引處。
以下是java.lang.String.lastIndexOf()方法的宣告
public int lastIndexOf(int ch, int fromIndex)
ch -- 這是字元的值(Unicode程式碼點)。
fromIndex -- 這是索引搜尋的開始。如果它大於或等於該字串的長度,它具有相同的效果,好像它是等於一個小於該字串的長度:這整個字串可能被搜尋。如果是負的,它具有相同的效果,如果它是-1:返回-1。
此方法返回字元對小於或等於fromIndex表示的字元序列的最後一個匹配項的索引,或-1,如果該字元不會在該點之前出現。
NA
下面的例子顯示java.lang.String.lastIndexOf()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str = "This is yiibai"; /* returns positive value(last occurrence of character t) as character is located, which searches character t backward till index 14 */ System.out.println("last index of letter 't' = " + str.lastIndexOf('t', 14)); /* returns -1 as character is not located under the give index, which searches character s backward till index 2 */ System.out.println("last index of letter 's' = " + str.lastIndexOf('s', 2)); // returns -1 as character e is not in the string System.out.println("last index of letter 'e' = " + str.lastIndexOf('e', 5)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
last index of letter 't' = 10 last index of letter 's' = -1 last index of letter 'e' = -1