吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1184|回复: 5
收起左侧

[Java 原创] 统计字符串中数字、汉字、字母、其他字符对应的个数

[复制链接]
pengruibin 发表于 2023-8-9 17:23
本帖最后由 pengruibin 于 2023-8-9 17:31 编辑

项目中一段用于统计字符串中数字、汉字、字母、其他字符对应的个数功能demo记录,写的不咋滴,随手分享下
[Java] 纯文本查看 复制代码
package com.example.mydemo;

/**
 * 统计字符串中数字、汉字、字母、其他字符对应的个数
 */
public class FontTest {

    public static void main(String[] args) {
        String string = "哈哈哈,写个demo测试一下统计字符串中数字、汉字、字母、其他字符对应的个数...\\ @!!#/";
        int hanziCount = 0;//记录匹配到的汉字个数
        int shuziCount = 0;//记录匹配到的数字个数
        int bigwordCount = 0;//记录匹配到的大写字母个数
        int smallwordCount = 0;//记录匹配到的小写字母个数
        int otherwordCount = 0;//记录匹配到的其他字符个数
        for (int i = 0; i < string.length(); i++) {
            String string2 = string.substring(i, i+1);
            if (string2.matches("[\u4e00-\u9fa5]")) {//判断这个字符是否为汉字
                hanziCount++;
            }else if (string2.matches("[0-9]")) {//判断这个字符是否为数字
                shuziCount++;
            }else if (string2.matches("[A-Z]")) {//判断这个字符是否为大写字母
                bigwordCount++;
            }else if (string2.matches("[a-z]")) {//判断这个字符是否为小写字母
                smallwordCount++;
            }else{
                otherwordCount++;
            }
        }
        System.out.println("汉字有:" + hanziCount);
        System.out.println("数字有:" + shuziCount);
        System.out.println("大写字母有:" + bigwordCount);
        System.out.println("小写字母有:" + smallwordCount);
        System.out.println("其他字符有:" + otherwordCount);
    }
}


运行结果:

运行结果

运行结果

免费评分

参与人数 2吾爱币 +7 热心值 +2 收起 理由
苏紫方璇 + 5 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!
zpy2 + 2 + 1 我很赞同!

查看全部评分

本帖被以下淘专辑推荐:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

zpy2 发表于 2023-8-9 21:45
请问一下,这个open jdk运行库太大,有没有jre来运行?
peng2023 发表于 2023-8-10 15:06
ccdrom 发表于 2023-8-10 15:38
 楼主| pengruibin 发表于 2023-8-10 15:59
zpy2 发表于 2023-8-9 21:45
请问一下,这个open jdk运行库太大,有没有jre来运行?

不用开发只用运行环境,jre就行了
fanliansuo1 发表于 2024-8-4 20:57
顶顶顶,顶顶顶
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 12:25

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表