java 怎么判断字母大小写,数字和其他字符的
2017-04-04 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
publicstatic void main(String[] args)}
{
String str = "abAM1,!23";
int cntU = 0; //大写字母的个数
int cntL = 0; //小写字母的个数
int cntOther = 0;
int i;
String s1 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
String s2 ="abcdefghijklmnopqrstuvwxyz";
for (i=0; i<str.length(); ++i)
{
charch = str.charAt(i);
if(-1 != (s1.indexOf(ch)))
{
cntU++;
}
elseif (-1 != s2.indexOf(ch))
{
cntL++;
}
else
{
cntOther++;
}
}
System.out.printf("大写字母个数: %d\n", cntU);
System.out.printf("小写字母个数: %d\n", cntL);
System.out.printf("非字母个数: %d\n", cntOther);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询