package com.swift; public class TotalNumber_String { public static void main(String[] args) { /* * 如果一串字元如"aaaabbc中國1512"要分別統計英文字元的數量,中文字元的數量,和數字字元的數量... ...
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); } }