public static void main(String[] args) { String str="ABC_001"; if(str.indexOf("ABC")!=-1){ System.out.println("包含"); }else{ System.out.println("不包含"); } }
java判断A字符串是否包含B字符串
原文:http://www.cnblogs.com/azhqiang/p/3936441.html