标签:indexof()
用indexOf()函数,不包含则返回-1,包含返回0;
String str="ABC_001";
if(str.indexOf("ABC")!=-1){
System.out.println("包含");
}
else{ System.out.println("不包含"); }
JAVA中判断一个字符串是否包含另一个字符串
原文地址:http://7883830.blog.51cto.com/7873830/1637538