java获取一个字符串在另一个字符串中出现的次数
时间: 2023-09-08 13:12:37 浏览: 223
统计字符出现的次数.md
可以使用Java中的String类的indexOf()方法和substring()方法来实现获取一个字符串在另一个字符串中出现的次数。
具体实现步骤如下:
1. 定义两个字符串变量str1和str2,分别表示要查找的字符串和被查找的字符串。
2. 定义一个计数器变量count,用于记录str1在str2中出现的次数。
3. 使用while循环,每次在str2中查找str1的位置,如果找到了就将count加1,并将str2的起始位置设置为str1出现的位置加上str1的长度,继续查找下一个str1的位置,直到str1在str2中找不到为止。
4. 最后返回count的值,即为str1在str2中出现的次数。
示例代码如下:
```
public static int countOccurrences(String str1, String str2) {
int count = ;
int index = str2.indexOf(str1);
while (index != -1) {
count++;
index = str2.indexOf(str1, index + str1.length());
}
return count;
}
```
调用示例:
```
String str1 = "hello";
String str2 = "hello world, hello java, hello python";
int count = countOccurrences(str1, str2);
System.out.println(count); // 输出3
```
阅读全文