java吧 关注:1,239,473贴子:12,710,528
  • 2回复贴,共1

大佬们,求Java中统计字符串中小写字母出现的的次 数的代码

只看楼主收藏回复

大佬们,求Java中统计字符串中小写字母出现的的次 数的代码


IP属地:四川来自Android客户端1楼2018-04-07 20:40回复
    public class LowCase {
    public int check(String str){
    int count=0;
    char[] array = str.toCharArray();
    for(int i=0;i<array.length;i++){
    if (97<=array[i]&&array[i]<=122) {
    count++;
    }
    }
    return count;
    }
    public static void main(String[] args) {
    int count = new LowCase().check("fjfefIJIEIJFIEJ");
    System.out.println(count);
    }
    }


    IP属地:湖北2楼2018-04-07 20:53
    回复
      谢谢大佬


      IP属地:四川来自Android客户端3楼2018-04-07 21:20
      回复