Java 实例 - 查找字符串最后一次出现的位置

Java 实例

以下实例中我们通过字符串函数 strOrig.lastIndexOf(Stringname) 来查找子字符串 Stringname 在 strOrig 出现的位置:

实例代码如下:

SearchlastString.java 文件

public class SearchlastString { public static void main(String[] args) { String strOrig = "Hello world ,Hello Codexy"; int lastIndex = strOrig.lastIndexOf("Codexy"); if(lastIndex == - 1){ System.out.println("没有找到字符串 Codexy"); }else{ System.out.println("Codexy 字符串最后出现的位置: "+ lastIndex); } } }

以上代码实例输出结果为:

Codexy 字符串最后出现的位置: 19

Java 实例