java 实现检测字符串是否只包含数字

解题思路:

Character.isDigit()方法和String.matches()

public static void main(String[] args) {
        String str = "123458766";
      //  System.out.println(str.matches("[0-9]+"));
        System.out.println(checkIsDigit("868763"));
    }

    public static boolean checkIsDigit(String str){
        char[] chars = str.toCharArray();
        for(int i = 0 ;i < chars.length; i++){
            if(!Character.isDigit(chars[i])){
                return false;
            }
        }
        return true;
    }

 

上一篇:838. 推多米诺 —— 2022.2.21


下一篇:ATM机(基础版):给出帐号密码,判断操作