Java String lastIndexOf()方法

Posted hglibin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java String lastIndexOf()方法相关的知识,希望对你有一定的参考价值。

Java String lastIndexOf()

技术分享图片

Java String lastIndexOf() method example

返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

Java String lastIndexOf(int ch, int fromIndex) Method Example

从fromIndex位置反向查找并返回指定字符在此字符串中最后一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

Java String lastIndexOf(String substring) Method Example

返回给定子字符串最后一次出现位置的索引,如果此字符串中没有这样的子字符串,则返回 -1。

Java String lastIndexOf(String substring, int fromIndex) Method Example

从fromIndex位置反向查找并返回给定子字符串最后一次出现位置的索引,如果此字符串中没有这样的子字符串,则返回 -1。

以上是关于Java String lastIndexOf()方法的主要内容,如果未能解决你的问题,请参考以下文章

java中的lastIndexOf( )函数是啥意思

c# 怎样获取string的某个字符最后一位的位置!

String的lastIndexOf()用法

String中的Indexof,LastIndexOf, Indexofany,LastIndexOfAny 的区别

在这种情况下,lastIndexOf() 如何比 indexOf() 好? [复制]

Java如何将拼接字符串中的最后一个逗号去掉