1. 程式人生 > >字符串的查找

字符串的查找

rst 建議 pla println first ont 簡單的 repl nbsp

最簡單的就是contains()方法

String str = "helloworld";

System.out.println(str.contains("world")); // true jdk 1.5 後才有的

System.out.println(str.indexOf("world")); // 5 w 開始的索引 jdk 1.5 前采用indexOf() 方法

System.out.println(str.indexOf("java")); // -1 沒有查到

if(str.indexOf("world")!=-1)

{

  System.out.println("可以查找到指定的內容!");

}

建議使用contains()方法

字符串的替換

String str = "helloworld";

System.out.println(str.replaceAll("l","_")); // he__oworld

System.out.println(str.replaceFirst("l","_")); // he_loworld

字符串的查找