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;
    }
}

 

 

 

########################################

posted @ 2024-08-05 19:05  西北逍遥  阅读(44)  评论(0编辑  收藏  举报