java正則判斷是不是數字(浮點數和整數)

public static boolean isNumber(String str) { //採用正則表達式的方式來判斷一個字符串是否爲數字,這種方式判斷面比較全 //能夠判斷正負、整數小數 boolean isInt = Pattern.compile("^-?[1-9]\\d*$").matcher(str).find(); b
相關文章
相關標籤/搜索