java统计字符串str1中字符串str2出现的次数,用数组实现
时间: 2023-06-06 13:04:32 浏览: 72
Java编程实现统计一个字符串中各个字符出现次数的方法
可以使用Java中的indexOf和循环来实现统计字符串出现次数的功能,代码如下:
```
public static int countOccurrences(String str1, String str2) {
int count = 0;
int index = str1.indexOf(str2);
while (index != -1) {
count++;
index = str1.indexOf(str2, index + 1);
}
return count;
}
```
其中,indexOf方法用于获取str2在str1中第一次出现的位置,如果返回-1表示没有找到;循环用于不断查找后续出现的位置,并累计次数。
阅读全文