java 计算字符串中的某字符出现次数
时间: 2023-11-28 16:04:20 浏览: 124
java统计字符串每个字符出现次数
5星 · 资源好评率100%
您可以使用以下代码来计算字符串中某个字符出现的次数:
```java
public static int countOccurrences(String str, char ch) {
int count = 0;
for (int i = 0; i < str.length(); i++) {
if (str.charAt(i) == ch) {
count++;
}
}
return count;
}
```
您可以将待计算的字符串作为第一个参数传递给上述函数,将要统计出现次数的字符作为第二个参数传递。该函数会返回字符在字符串中出现的次数。例如,如果要计算字符 'a' 在字符串 "banana" 中的出现次数,可以使用以下代码:
```java
String str = "banana";
char ch = 'a';
int occurrenceCount = countOccurrences(str, ch);
System.out.println("Character '" + ch + "' occurs " + occurrenceCount + " times in the string.");
```
运行此代码将输出:Character 'a' occurs 3 times in the string.
阅读全文