现有一串字符串 ”上海传智播客,上海黑马,武汉传智播客,深圳黑马,北京传智播客,广州黑马,北京黑马” ,
要求使用程序统计出”传智播客”和”黑马”在该字符串中出现的次数
*/
public class Test3 {
public static void main(String[] args) {
String str = "上海传智播客,上海黑马,武汉传智播客,深圳黑马,北京传智播客,广州黑马,北京黑马";
String min = "传智播客";
String max = "黑马";
int count = 0;
int sun = 0;
while(str.indexOf(min)!= -1||str.indexOf(max)!= -1) {
if(str.indexOf(min)!= -1){
str = str.replaceFirst(min, "");
count++;
}else
if (str.indexOf(max)!= -1) {
str = str.replaceFirst(max, "");
sun++;
}
}
System.out.println(count+"..."+sun);
}
}
|