计算字符串出现的次数

方法一:
String str = “北京市人民政府和北京市政协”;
// 定义一个子串
String s = “北京”;
// 统计次数
int count = 0;
while (true) {
// 返回第一次出现子串的索引
int index = str.indexOf(s);
if (index!= -1) {
str = str.substring(index + s.length(), str.length()-1);
count++;
} else {
break;
}
}
System.out.println(“子字符串一共在字符串中出现了” + count + “次”);
方法二:

String a = “北京市人民政府和北京市政协”;
String b = “北京”;
int count = 0;
while (a.indexOf(b) >= 0) {
a = a.substring(a.indexOf(b) + b.length());//截取字符串从找到的第一个开始 ,截取到b的长度
count++;
}
System.out.println(“指定字符串在原字符串中出现:” + count + “次”);

你可能感兴趣的:(基础)