此方法返回指定子字符串最后一次出现的此字符串中的索引,从指定索引开始向后搜索。
以下是此方法的语法 -
public int lastIndexOf(String str, int fromIndex)
这是参数的细节 -
fromIndex - 从中开始搜索的索引。
str - 一个字符串。
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to iowiki.com");
String SubStr1 = new String("Tutorials" );
System.out.print("Found Last Index :" );
System.out.println( Str.lastIndexOf( SubStr1, 15 ));
}
}
这将产生以下结果 -
Found Last Index :11