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

溫馨提示×

如何在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
镇安县| 安岳县| 尉氏县| 枝江市| 民勤县| 栾川县| 成安县| 湘潭县| 双流县| 涞源县| 桐乡市| 德阳市| 桃园市| 喀喇| 巴里| 湖北省| 遵义市| 威远县| 榆林市| 江达县| 米林县| 梓潼县| 商水县| 临邑县| 乐至县| 乐陵市| 壶关县| 永寿县| 沂南县| 吉林省| 陆河县| 正定县| 綦江县| 宣城市| 建水县| 卢湾区| 奇台县| 宿迁市| 卓资县| 茶陵县| 噶尔县|