您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關java判斷字符串是否為數字的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
用JAVA自帶的函數
public static boolean isNumericZidai(String str) { for (int i = 0; i < str.length(); i++) { System.out.println(str.charAt(i)); if (!Character.isDigit(str.charAt(i))) { return false; } } return true; }
其中Character.isDigit方法:確定或判斷指定字符是否是一個數字。
測試方法:
public static void main(String[] args) { double aa = -19162431.1254; String a = "-19162431.1254"; String b = "-19162431a1254"; String c = "中文"; System.out.println(isNumericzidai(Double.toString(aa))); System.out.println(isNumericzidai(a)); System.out.println(isNumericzidai(b)); System.out.println(isNumericzidai(c)); }
結果顯示:
false false false false
這種方法顯然不能判斷 負數。
用正則表達式
/** * 匹配是否為數字 * @param str 可能為中文,也可能是-19162431.1254,不使用BigDecimal的話,變成-1.91624311254E7 * @return * @date 2016年11月14日下午7:41:22 */ public static boolean isNumeric(String str) { // 該正則表達式可以匹配所有的數字 包括負數 Pattern pattern = Pattern.compile("-?[0-9]+(\\.[0-9]+)?"); String bigStr; try { bigStr = new BigDecimal(str).toString(); } catch (Exception e) { return false;//異常 說明包含非數字。 } Matcher isNum = pattern.matcher(bigStr); // matcher是全匹配 if (!isNum.matches()) { return false; } return true; }
使用org.apache.commons.lang
public static boolean isNumeric(String str)Checks if the String contains only unicode digits. A decimal point is not a unicode digit and returns false. null will return false. An empty String ("") will return true. StringUtils.isNumeric(null) = false StringUtils.isNumeric("") = true StringUtils.isNumeric(" ") = false StringUtils.isNumeric("123") = true StringUtils.isNumeric("12 3") = false StringUtils.isNumeric("ab2c") = false StringUtils.isNumeric("12-3") = false StringUtils.isNumeric("12.3") = false Parameters: str - the String to check, may be null Returns: true if only contains digits, and is non-null
關于java判斷字符串是否為數字的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。