String的lastIndexOf()用法
Posted 奋斗的大海
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String的lastIndexOf()用法相关的知识,希望对你有一定的参考价值。
String还定义有lastIndexOf(String str,int from) 意思为str在字符串多次出现时将返回最后一次出现的位置。
eg: String str = "I can because i think i can";
int index = str.lastIndexOf("can")
System.out.println(index); // 24
以上是关于String的lastIndexOf()用法的主要内容,如果未能解决你的问题,请参考以下文章
js中substr,substring,indexOf,lastIndexOf等的用法
js中substr,substring,indexOf,lastIndexOf,split 的用法
Java - String.lastIndexOf(str)逻辑我无法理解