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