标签:public rgs bsp ati [] contain void sys system
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
}
}
}
标签:public rgs bsp ati [] contain void sys system
原文地址:http://www.cnblogs.com/mengliang/p/6833381.html