Java 查找字符串最后一次出现的位置
通过字符串函数 strOrig.lastIndexOf(Stringname) 来查找子字符串 Stringname 在 strOrig 出现的位置
public class SearchlastString { public static void main(String[] args) { String strOrig = "Hello world ,Hello Twle"; int lastIndex = strOrig.lastIndexOf("Twle"); if(lastIndex == - 1){ System.out.println("没有找到字符串 Twle"); }else{ System.out.println("Twle 字符串最后出现的位置: "+ lastIndex); } } }
编译运行以上 Java 代码,输出结果如下
Twle 字符串最后出现的位置: 19