java.lang.String.lastIndexOf(int ch) 方法返回該字串指定字元最後一次出現處的索引。
以下是java.lang.String.lastIndexOf()方法的宣告
public int lastIndexOf(int ch)
ch -- 這是字元的值(Unicode程式碼點)。
此方法返回字元在該物件表示的字元序列的最後一個匹配項的索引,或者-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 the index of last occurrence of character i System.out.println("last index of letter 'i' = " + str.lastIndexOf('i')); // returns -1 as character e is not in the string System.out.println("last index of letter 'e' = " + str.lastIndexOf('e')); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
last index of letter 'i' = 19 last index of letter 'e' = -1