• java判断字符串中是否包含数字


    // 判断字符串包含数字 方法一
        public static boolean testIsNumMethodOne(String str) {
            boolean flag = false;
            String numStr = "0123456789";
            for (int i = 0; i < str.length(); i++) {
                String subStr = str.substring(i, i+1);
                if (numStr.contains(subStr)) {
                    flag = true;
                }
            }
            return flag;
        }
        
        // 判断字符串包含数字 方法二
        public static boolean testIsNumMethodTwo(String str) {
            boolean flag = false;
            Pattern pattern = Pattern.compile("[0-9]+");
            Matcher matcher = pattern.matcher(str);
            if (matcher.find()) {
                flag = true;
            }
            return flag;
        }
        
        // 判断字符串包含数字 方法三
        public static boolean testIsNumMethodThree(String str) {
            boolean flag = false;
            for (int i = 0; i < str.length(); i++) {
                char c = str.charAt(i);
                if (c > 48 && c < 57) {
                    flag = true;
                }
            }
            return flag;
        }
        
        // 判断字符串包含数字 方法四
        public static boolean testIsNumMethodFour(String str) {
            boolean flag = false;
            for (int i = 0; i < str.length(); i++) {
                char c = str.charAt(i);
                if (Character.isDigit(c)) {
                    flag = true;
                }
            }
            return flag;
        }
  • 相关阅读:
    对字符串做预处理 、 工具类
    判断对象是否为空 、 工具类
    判断集合是否为空 、 工具类
    jquery取值
    时间年月日格式化
    图片上传
    验证码解决方案
    PHP高效率写法
    关于ip判断
    composer(管理依赖关系的工具) 及配置信息
  • 原文地址:https://www.cnblogs.com/alphajuns/p/15730597.html
Copyright © 2020-2023  润新知