1. 程式人生 > >android判斷字串是否為數字

android判斷字串是否為數字

public static boolean isNumeric(String str){ 
   Pattern pattern = Pattern.compile("[0-9]*"); 
   return pattern.matcher(str).matches();