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()方法的主要内容,如果未能解决你的问题,请参考以下文章
String中的Indexof,LastIndexOf, Indexofany,LastIndexOfAny 的区别