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

返回上一级

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.