Nathing
mingwjj
全部博文(111)
j2se(1)
hibernate(0)
2016年(2)
2015年(1)
2014年(31)
2012年(2)
2011年(9)
2010年(36)
2009年(30)
kgdjszx
备案出行
hzlzy
zhaoyh
zyd10137
wddwr730
2_gougou
shenhp
yingyife
分类: Java
2010-10-29 22:54:19
public class Counter2 { public static void main(String[] args) { 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(ch>='0' && ch<='9') { digitCount++; } else if((ch>='a' && ch<='z') || (ch>='A' && ch<='Z')) { engishCount++; } else { chineseCount++; } } System.out.println("digitCount" +digitCount); System.out.println("engishCount" +engishCount); System.out.println("chineseCount" +chineseCount); } }
上一篇:用map统计字符串中字符出现的次数
下一篇:TreeSet实例
登录 注册