码迷,mamicode.com
首页 > 其他好文 > 详细

计算一个字符串中大写字母、小写字母、特殊字符、数字的个数

时间:2016-04-01 12:56:55      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

 1 public class Test_123_Test {
 2     public static void main(String[] args) {
 3         String str = "asdfghASDFG12345@#¥%……&";
 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方法中的方法直接进行少选,但是首先必须把字符串拆成一个个的字符才可以
*

计算一个字符串中大写字母、小写字母、特殊字符、数字的个数

标签:

原文地址:http://www.cnblogs.com/wangh94/p/5344329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!