JAVA判断字符串是否包含中文或者包含中文字符

 

 

 private static Pattern pattern = Pattern.compile("[\u4E00-\u9FA5|\\!|\\,|\\。|\\(|\\)|\\《|\\》|\\“|\\”|\\?|\\:|\\;|\\【|\\】]");

    /**
     * 字符串是否包含中文
     *
     * @param str 待校验字符串
     * @return true 包含中文字符 false 不包含中文字符
     */
    public static boolean isContainChinese(String str) {

        if (StringUtils.isBlank(str)) {
            return false;
        }

        Matcher m = pattern.matcher(str);
        if (m.find()) {
            return true;
        }
        return false;
    }

 

posted @ 2023-01-03 16:00  yvioo  阅读(1165)  评论(0编辑  收藏  举报