posts - 19,comments - 0,views - 7650

解题思路:

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;
    }
复制代码

 

posted on   安安安happy  阅读(181)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· 葡萄城 AI 搜索升级:DeepSeek 加持,客户体验更智能
· 什么是nginx的强缓存和协商缓存
· 一文读懂知识蒸馏
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示