Java 字符串搜索

返回上一级

使用 String 类的 indexOf() 方法在字符串中查找子字符串出现的位置,如果存在返回字符串出现的位置(第一位为0),如果不存在返回 -1

public class SearchStringEmp {
   public static void main(String[] args) {
      String strOrig = "Google Twle Taobao";
      int intIndex = strOrig.indexOf("Twle");
      if(intIndex == - 1){
         System.out.println("没有找到字符串 Twle");
      }else{
         System.out.println("Twle 字符串位置 " + intIndex);
      }
   }
}

编译运行以上 Java 代码,输出结果如下

Twle 字符串位置 7

返回上一级

Java 基础教程

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

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

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