首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
编程语言
> 详细
统计一段文字中数组、中文、英文字母、空格以及其他特殊字符出现的次数
时间:
2015-12-03 17:10:26
阅读:
166
评论:
0
收藏:
0
[点我收藏+]
标签:
package util;
public
class CountStr {
/**
* 有一个字符串,其中包含中文字符、英文字符和数字字符,请统计和打印出各个字符的个数
* 短信发送平台,短信字数控制查询方法
*/
public
static
void main(String[] args) {
//String str = "adasf AAADFD我是中文,,》123";
//String str = "金马甲高端商品交易平台--2013全城热恋克拉钻石项目预售,18个月,三万起步,年化8%,预购请致电展恒私人财富:18611297979";
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;
}
}
统计一段文字中数组、中文、英文字母、空格以及其他特殊字符出现的次数
标签:
原文地址:http://www.cnblogs.com/zhangxiongboke/p/5016867.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
Spring Cloud 从入门到精通(一)Nacos 服务中心初探
2021-07-29
基础的排序算法
2021-07-29
SpringBoot|常用配置介绍
2021-07-29
关于 .NET 与 JAVA 在 JIT 编译上的一些差异
2021-07-29
C语言常用函数-toupper()将字符转换为大写英文字母函数
2021-07-29
《手把手教你》系列技巧篇(十)-java+ selenium自动化测试-元素定位大法之By class name(详细教程)
2021-07-28
4-1 YAML配置文件 注入 JavaBean中
2021-07-28
【python】 用来将对象持久化的 pickle 模块
2021-07-28
马拉车算法
2021-07-28
用Python进行冒泡排序
2021-07-28
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!