Java String lastIndexOf()
方法返回此物件表示的字元序列中最後一次出現的索引,該索引小於或等於fromIndex
,如果該字元在fromIndex
之前未出現,則返回-1
。
語法
以下是此方法的語法 -
int lastIndexOf(int ch)
ch
- 要查詢的字元。ch
字元所在的索引。import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tw511.com");
System.out.print("Found Last Index :");
System.out.println(Str.lastIndexOf('i'));
}
}
執行上面範例程式碼,得到以下結果:
Found Last Index :16