美文网首页
android:判断字符串是否全是数字

android:判断字符串是否全是数字

作者: hao_developer | 来源:发表于2022-02-16 10:51 被阅读0次
    public boolean isNumeric(String str){ 
       Pattern pattern = Pattern.compile("[0-9]*"); 
       Matcher isNum = pattern.matcher(str);
       if( !isNum.matches() ){
           return false; 
       } 
       return true; 
    }
    
    

    相关文章

      网友评论

          本文标题:android:判断字符串是否全是数字

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