1 public class Test_123_Test { 2 public static void main(String[] args) { 3 String str = "[email protected]#¥%……&"; 4 int bigs = 0;// 记录大写字母的个数 5 int smalls = 0;// 记录小写字母的个数 6 int others = 0;// 记录其他字符的个数 7 int shuzi = 0; 8 System.out.println(str.length()); 9 for (int i = 0; i < str.length(); i++) { 10 char str_1 = str.charAt(i);// 依次取出每个字符 11 if (‘A‘ <= str_1 && ‘Z‘ >= str_1) { 12 bigs++;// 记录大写字母 13 } else if (‘a‘ <= str_1 && ‘z‘ >= str_1) { 14 smalls++; 15 } else if (Character.isDigit(str_1)) { 16 shuzi++; 17 } else { 18 others++; 19 } 20 } 21 System.out.println("大写字母的个数:=" + bigs); 22 System.out.println("小写字母的个数:=" + smalls); 23 System.out.println("特殊字符的个数:=" + others); 24 System.out.println("数字的个数:=" + shuzi); 25 System.out.println("一共有字符:=" + str.length()); 26 } 27 }
Description: 随机的一个字符串,计算其中的每类字符的个数
* 例如:ABCDE*&^%$abcde123456计算其中大写字母、小写字母、特殊字符、数字的个数
*
* 解决思路:可以通过ascci码来解决 也可以通过character方法中的方法直接进行少选,但是首先必须把字符串拆成一个个的字符才可以
*
时间: 2024-10-10 04:18:13