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

溫馨提示×

如何在Java中使用isNumeric方法判斷字符串

小樊
97
2024-08-21 02:53:23
欄目: 編程語言

您可以使用Apache Commons Lang庫中的StringUtils類來判斷一個字符串是否為數字。以下是一個示例代碼:

import org.apache.commons.lang3.StringUtils;

public class Main {
    public static void main(String[] args) {
        String str = "12345";
        
        if(StringUtils.isNumeric(str)) {
            System.out.println("The string is numeric");
        } else {
            System.out.println("The string is not numeric");
        }
    }
}

如果您不想使用第三方庫,您也可以使用正則表達式來判斷一個字符串是否為數字。以下是一個示例代碼:

public class Main {
    public static void main(String[] args) {
        String str = "12345";
        
        if(str.matches("-?\\d+(\\.\\d+)?")) {
            System.out.println("The string is numeric");
        } else {
            System.out.println("The string is not numeric");
        }
    }
}

這兩種方法都可以有效地判斷一個字符串是否為數字。

0
洪洞县| 昌吉市| 宣恩县| 淮安市| 乌拉特中旗| 芷江| 江达县| 舞阳县| 景谷| 宜春市| 青冈县| 丽江市| 满城县| 西畴县| 沁水县| 辉县市| 通江县| 正宁县| 百色市| 蓬溪县| 长垣县| 六安市| 泰兴市| 将乐县| 颍上县| 尖扎县| 曲麻莱县| 安龙县| 上饶县| 嘉定区| 承德县| 孟村| 通城县| 孙吴县| 康马县| 鹤峰县| 平山县| 乐业县| 玛曲县| 怀安县| 五大连池市|