美文网首页
判断名字是否为中文,是否包含·或者特殊符号等

判断名字是否为中文,是否包含·或者特殊符号等

作者: 幽兰清风 | 来源:发表于2017-10-16 17:36 被阅读12次
    public static boolean checkCellphone(String cellphone) {
        Pattern p = Pattern.compile("^[\\u4e00-\\u9fa5]+(·[\\u4e00-\\u9fa5]+)*$");
        Matcher m = p.matcher(cellphone);
        return m.matches();
            
    }

    相关文章

      网友评论

          本文标题:判断名字是否为中文,是否包含·或者特殊符号等

          本文链接:https://www.haomeiwen.com/subject/ynhluxtx.html