1. 程式人生 > >1.12 判斷字符串第一次出現的位子 和 字符串是否存在

1.12 判斷字符串第一次出現的位子 和 字符串是否存在

clas [] pac println oid 判斷 main true int

package Demo;

public class Demo4 {
public static void main(String[] args) {
String str = "helloworld";
/*if(str.indexOf("hello")!=-1){
System.out.println("位置是:"+str.indexOf("hello")); // 位置是:0

}else{
System.out.println(-1);
}*/


//檢查是否存在
if(str.contains("hello")){
System.out.println("位置是:"+str.contains("hello"));
}else{
System.out.println(-1); // 位置是:true
}
}
}

1.12 判斷字符串第一次出現的位子 和 字符串是否存在