Java String lastIndexOf() fromIndex方法
描述
这个方法返回此字符串中指定子字符串最后一次出现的索引,从指定的索引开始向后搜索。
语法
这个方法的语法如下所示−
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 Tutorialspoint.com");
String SubStr1 = new String("Tutorials" );
System.out.print("Found Last Index :" );
System.out.println( Str.lastIndexOf( SubStr1, 15 ));
}
}
这将产生以下结果 −
输出
Found Last Index :11