此方法返回此对象表示的字符序列中最后一次出现的索引,该索引小于或等于fromIndex,如果该字符在该点之前未出现,则返回-1。
以下是此方法的语法 -
int lastIndexOf(int ch)
这是参数的细节 -
ch - 一个角色。
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to iowiki.com");
System.out.print("Found Last Index :" );
System.out.println(Str.lastIndexOf( 'o' ));
}
}
这将产生以下结果 -
Found Last Index :27