Java 正则表达式使用例子记录

2021-05-12 14:27

阅读:702

标签:pattern   ISE   ati   正则   div   match   color   @param   用例   

前言

  此篇博客用来记录一些常用的正则表达式

判断是否是全汉字

    /**
     * 判断是否是全中文汉字
     *
     * @param str
     * @return
     */
    public static boolean isChinese(String str) {
        String pattern = "[\u4e00-\u9fa5]*";
        if (str == null || str.isEmpty()) {
            return false;
        }
        return str.matches(pattern);
    }

 

Java 正则表达式使用例子记录

标签:pattern   ISE   ati   正则   div   match   color   @param   用例   

原文地址:https://www.cnblogs.com/guanxinjing/p/13140111.html


评论


亲,登录后才可以留言!