Java String lastIndexOf() 方法
描述
此方法返回该对象表示的字符序列中小于或等于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 Tutorialspoint.com");
System.out.print("Found Last Index :" );
System.out.println(Str.lastIndexOf( 'o' ));
}
}
这将产生以下结果 –
输出
Found Last Index :27