美文网首页
Android 是否都是数字匹配、英文匹配、中文

Android 是否都是数字匹配、英文匹配、中文

作者: 晓章_598d | 来源:发表于2020-12-02 10:39 被阅读0次
    数字匹配原则
        public static boolean  isNumeric(String num){
            Pattern pattern = Pattern.compile("[0-9]*");
            Matcher isNum = pattern.matcher(num);
            if (!isNum.matches()) {
                return false;
            }
            return true;
        }
    
    英文匹配原则
        public static boolean isEnglish(String charaString){
            return charaString.matches("^[a-zA-Z]*");
        }
    
    中文匹配原则
       public static boolean isChinese(String str){
            String regEx = "[\\u4e00-\\u9fa5]+";
            Pattern p = Pattern.compile(regEx);
            Matcher m = p.matcher(str);
            if(m.find())
                return true;
            else
                return false;
        }
    

    相关文章

      网友评论

          本文标题:Android 是否都是数字匹配、英文匹配、中文

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