统计字符串中某个字符的个数

统计字符串中某个字符的个数
    private int countNum(final String str, final char ch){
        int num = 0;
        if (str != null){
            for(char i: str.toCharArray()){
                if(i==ch){
                    ++num;
                }
            }
        }
        return num;
    }

 

posted on 2018-10-25 14:34 wenlin_gk 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/wenlin-gk/p/9849679.html

你可能感兴趣的:(统计字符串中某个字符的个数)