91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

新龙县| 苗栗市| 洪湖市| 靖远县| 富民县| 武鸣县| 百色市| 江门市| 海兴县| 中超| 冀州市| 壶关县| 霍城县| 阳江市| 吉林省| 宁强县| 禹城市| 金湖县| 民丰县| 寻甸| 泽普县| 奇台县| 石泉县| 冕宁县| 来凤县| 龙门县| 阿拉善盟| 尼木县| 苍溪县| 竹山县| 永济市| 绵阳市| 平阴县| 古浪县| 沁阳市| 保定市| 安仁县| 玛纳斯县| 邵阳县| 柏乡县| 乐平市|