-
统计一段文字中数组、中文、英文字母、空格以及其他特殊字符出现的次数
- package util;
-
-
- public class CountStr {
-
- public static void main(String[] args) {
-
-
-
- String str = " 展恒理财,2004年在北京成立,是国内最大的理财咨询类机构之一。获得国家颁发的独立基金销售牌照.是2013年中国网球公开赛10大核心赞助商之一。 公司成立10年来,在为客户进行全面的家庭财务规划方面积累了十分丰富的经验。目前拥有中高端忠实客户10000多名,配置客户资金超过200亿元,位列 行业排名前三强。";
-
- System.out.println("[总字符数1]:"+countSum(str));
- System.out.println("--------------------");
- System.out.println("[总字符数2]:"+countSum2(str));
- System.out.println("--------------------");
- System.out.println("[总字符数3]:"+str.length());
- }
-
- public static int countSum(String str) {
- int unicodeCount = 0;
- int szCount = 0;
- int zmCount = 0;
-
- for (int i = 0; i < str.length(); i++) {
-
- char c = str.charAt(i);
- if (c >= '0' && c <= '9') {
- szCount++;
- }else if((c >= 'a' && c<='z') || (c >= 'A' && c<='Z')){
- zmCount++;
- }else{
- unicodeCount++;
- }
- }
- System.out.println("Unicode:"+unicodeCount);
- System.out.println("数字:"+szCount);
- System.out.println("字母:"+zmCount);
- int sum=szCount+zmCount+unicodeCount;
- return sum;
- }
- public static int countSum2(String str) {
- int abccount = 0;
- int numcount = 0;
- int spacecount = 0;
- int othercount = 0;
- char[] b = str.toCharArray();
- for(int i = 0; i < b.length; i++){
- if(b[i]>='a'&&b[i]<='z'||b[i]>='A'&&b[i]<='Z'){
- abccount++;
- }else if(b[i]>='0'&&b[i]<='9'){
- numcount++;
- }else if(b[i]==' '){
- spacecount++;
- }else{
- othercount++;
- }
- }
- int sum=abccount+numcount+spacecount+othercount;
- System.out.println("字符串中含有的英文字母数为:" + abccount);
- System.out.println("字符串中含有的数字数为:" + numcount);
- System.out.println("字符串中含有的空格数为:" + spacecount);
- System.out.println("字符串中含有的其他字符为:" + othercount);
- return sum;
- }
- }
-
相关阅读:
是否该让开发人员跟客户直接交流 狼人:
2010年浏览器随HTML5而动 五大产品年终盘点 狼人:
微软推出HTML5实验室站点及两项原型技术 狼人:
传IE9 RC版将于1月28日公开发布 狼人:
Python——基础篇 狼人:
百万级访问量网站的技术准备工作 狼人:
容器对象spring(4)_ bean属性 scope:作用域和lazyinit
组件注册关于VC++6.0中,MSDev89\Gallery 文件夹为空的问题
注入参数spring入门(7)装配Bean中构造参数的注入
优惠播客成都传智播客java基础班大优惠
-
原文地址:https://www.cnblogs.com/zhangxiongboke/p/5016867.html
Copyright © 2020-2023
润新知