java面试题:如果一串字符如"aaaabbc中…

2018-06-18 03:42:20来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

package com.swift;

public class TotalNumber_String {

    public static void main(String[] args) {
        /*
         * 如果一串字符如"aaaabbc中国1512"要分别统计英文字符的数量,中文字符的数量,和数字字符的数量,
         * 假设字符中没有中文字符、英文字符、数字字符之外的其他特殊字符。
         */
        String str="aaaabbc中国1512";
        int engishCount = 0;
        int chineseCount = 0;
        int digitCount = 0;
        for(int i=0;i<str.length();i++)
        {
            char ch = str.charAt(i);
            
            if(Character.isDigit(ch))
            {
                digitCount++;
            }
            else if(String.valueOf(ch).matches("[a-zA-Z]{1}"))//用isLetter()包含中文字符
            {
                engishCount++;
            }
            else
            {
                chineseCount++;
            }
        }
        System.out.println("the number of letter is "+engishCount+" ; the number of digit is "+digitCount+" ; the number of chineseCount is "+chineseCount);

    }

}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Overload&amp;Override

下一篇:Intellij idea 中修改java web代码 ,网页不同步