Java String lastIndexOf(String str)方法
描述
该方法接受一个String作为参数,如果字符串参数在此对象中作为子字符串出现一次或多次,则返回最后一个这样的子字符串的第一个字符的索引。如果它不作为子字符串出现,则返回-1。
语法
这个方法的语法如下所示−
public int lastIndexOf(String str)
参数
以下是参数的详细信息 –
- 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 ));
}
}
这将产生以下结果−
输出
Found Last Index :11