以下实例使用了 String 类的 indexOf() 方法在字符串中查找子字符串出现的位置,如过存在返回字符串出现的位置(第一位为0),如果不存在返回 -1:
public class SearchStringEmp { public static void main(String[] args) { String strOrig = "Google Jb51 Taobao"; int intIndex = strOrig.indexOf("Jb51 "); if(intIndex == - 1){ System.out.println("没有找到字符串 Jb51 "); }else{ System.out.println("Runoob 字符串位置 " + intIndex); } } }
以上代码实例输出结果为:
Jb51 字符串位置 7
在线实例
字符集 & 工具
最新更新
站点信息
关注我们