中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java有幾種方法可以判斷字符串是否為數字

發布時間:2020-06-25 11:29:43 來源:億速云 閱讀:336 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關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判斷字符串是否為數字的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黑河市| 英德市| 左权县| 汝州市| 古丈县| 城固县| 民和| 图木舒克市| 商南县| 青铜峡市| 辽阳市| 牟定县| 阿克陶县| 嘉祥县| 石柱| 广宁县| 襄汾县| 宁津县| 永德县| 旬邑县| 密云县| 来宾市| 荆州市| 福清市| 靖江市| 舟山市| 嘉义县| 邵东县| 黔南| 长垣县| 八宿县| 鹤峰县| 台南市| 萍乡市| 鄯善县| 调兵山市| 林甸县| 上思县| 兴义市| 司法| 宝应县|