用indexOf()函数,不包含则返回-1,包含返回0;
String str="ABC_001";
if(str.indexOf("ABC")!=-1){
System.out.println("包含");
}
else{ System.out.println("不包含");}
本文共 188 字,大约阅读时间需要 1 分钟。
用indexOf()函数,不包含则返回-1,包含返回0;
String str="ABC_001";
if(str.indexOf("ABC")!=-1){
System.out.println("包含");
}
else{ System.out.println("不包含");}
转载于:https://blog.51cto.com/7883830/1579732