JAVA 字符串判断

  1. // 判断一个字符串是否都为数字  
  2. public boolean isDigit(String strNum) {  
  3.     return strNum.matches("[0-9]{1,}");  
  4. }  
  5.   
  6. // 判断一个字符串是否都为数字  
  7. public boolean isDigit(String strNum) {  
  8.     Pattern pattern = Pattern.compile("[0-9]{1,}");  
  9.     Matcher matcher = pattern.matcher((CharSequence) strNum);  
  10.     return matcher.matches();  
  11. }
posted @ 2017-12-16 12:40  有你Android  阅读(660)  评论(0编辑  收藏  举报