判断字符串中有多少个中文的工具类

复制代码
public class ChineseNumFromStrUtil {
    public static int getChineseNumFromStrUtil(String str) {
        int count = 0;
        String regEx = "[\\u4e00-\\u9fa5]";
        Pattern p = Pattern.compile(regEx);
        Matcher m = p.matcher(str);
        while (m.find()) {
            for (int i = 0; i <= m.groupCount(); i++) {
                count = count + 1;
            }
        }
        return count;
    }
}
复制代码

 

posted on   java界的奥特曼  阅读(342)  评论(0编辑  收藏  举报
努力加载评论中...

点击右上角即可分享
微信分享提示