java计算字符数量
public class CharCountExample { public static void main(String[] args) { String text = "Hello, world! How are you?"; char targetChar = 'o'; int count = countChar(text, targetChar); System.out.println("字符 '" + targetChar + "' 在字符串中出现了 " + count + " 次。"); } /** * 统计字符串中某个字符的数量 * * @param text 要搜索的字符串 * @param targetChar 需要统计的字符 * @return 字符在字符串中出现的次数 */ public static int countChar(String text, char targetChar) { int count = 0; for (int i = 0; i < text.length(); i++) { if (text.charAt(i) == targetChar) { count++; } } return count; } }
########################################
QQ 3087438119