[java 基础] 统计输出字符串中的大小写字母和数字的个数
程序员文章站
2022-07-14 07:58:36
...
示例代码
public class StringTest{
public static void main(String[] args) {
String s = "aDDbcdef123";
int big =0;
int small = 0;
int num=0;
int len = s.length();
for (int i = 0;i<len;i++){
char c = s.charAt(i);
System.out.println(c );
if(c>'A' && c<'Z'){
big++;
}
if(c>'a' && c<'z'){
small++;
}
if(c>'0' && c<'9'){
num++;
}
}
System.out.println("大写字母的个数为" + big );
System.out.println("小写字母的个数为" + small);
System.out.println("数字的个数为" + num);
}
}
执行结果
上一篇: (字符串)大小写字母转换
下一篇: 将字符串中的小写字母换成大写