Java String lastIndexOf(int ch, int fromIndex)方法
描述
该方法返回此对象表示的字符序列中最后一次出现的字符在fromIndex之前或等于fromIndex的索引,如果该字符在该点之前不存在,则返回-1。
语法
这个方法的语法如下:
public int lastIndexOf(int ch, int fromIndex)
参数
以下是参数的详细信息:
- ch − 一个字符。
-
fromIndex − 开始搜索的索引。
返回值
- 该方法返回索引。
示例
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tutorialspoint.com");
System.out.print("Found Last Index :" );
System.out.println(Str.lastIndexOf( 'o', 5 ));
}
}
这将产生以下结果 −
输出
Found Last Index :4