此方法返回此对象表示的字符序列中该字符最后一次出现的索引,该索引小于或等于fromIndex,如果没找到,则返回-1。
int lastIndexOf - 语法
public int lastIndexOf(int ch, int fromIndex)
这是参数的详细信息-
ch - 一个字符。
fromIndex - 从中开始搜索的索引。
int lastIndexOf - 返回值
- 此方法返回索引位置。
int lastIndexOf - 示例
import java.io.*; public class Test { public static void main(String args[]) { String Str=new String("Welcome to Learnfk.com"); System.out.print("Found Last Index :" ); System.out.println(Str.lastIndexOf( 'f', 5 )); } }
这将产生以下输出-
Found Last Index :4
参考链接
https://www.learnfk.com/java/java-string-lastindexof-chfromindex.html
标签:ch,lastIndexOf,int,fromIndex,索引,java From: https://blog.51cto.com/u_14033984/8853485