亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

隆德县| 甘肃省| 武平县| 盘锦市| 延津县| 霍林郭勒市| 西宁市| 高阳县| 临江市| 井冈山市| 万宁市| 宣汉县| 临湘市| 淳化县| 邛崃市| 乐平市| 兴安盟| 西畴县| 商都县| 长葛市| 新乐市| 上杭县| 绥德县| 庄河市| 诸城市| 灵丘县| 增城市| 广东省| 丹凤县| 巧家县| 高清| 延吉市| 兴国县| 来凤县| 林州市| 烟台市| 松滋市| 通化市| 饶阳县| 渭南市| 蒙阴县|