迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Java >

如何在 Java 中检查一个字符串是否是一个数字

作者:迹忆客 最近更新:2023/05/16 浏览次数:

本教程将介绍在 Java 中如何检查一个字符串是否为数字,并列举了一些示例代码来了解它。

检查数字字符串的方法有好几种,如使用 regex、Double 类、Character 类或 Java 8 函数式方法等。


在 Java 中检查一个字符串是否是数字

如果且仅当字符串包含数字(有效的数字位)时,它才是数字字符串。例如,"123" 是一个有效的数字字符串,而 "123a" 不是一个有效的数字字符串,因为它包含一个字母。

为了检查数字字符串,我们可以使用 String 类的 matched() 方法,该方法以 regex 为参数,并返回一个布尔值 truefalse

public class SimpleTesting {

    public static void main(String[] args) {
        String str = "123";
        boolean isNumeric =  str.matches("[+-]?\\d*(\\.\\d+)?");
        System.out.println(isNumeric);
        str = "121xy";
        isNumeric =  str.matches("[+-]?\\d*(\\.\\d+)?");
        System.out.println(isNumeric);
        str = "0x234";
        isNumeric =  str.matches("[+-]?\\d*(\\.\\d+)?");
        System.out.println(isNumeric);
    }
}

输出:

true
false
false

使用 Java 中的 Character 类检查字符串是否是数字

我们可以使用 Character 类的 isDigit() 方法来检查循环中的每个字符。它返回 truefalse 值。

public class SimpleTesting {

    public static void main(String[] args) {
        String str = "1123";
        boolean isNumeric = true;
        for (int i = 0; i < str.length(); i++) {
            if (!Character.isDigit(str.charAt(i))) {
                isNumeric = false;
            }
        }
        System.out.println(isNumeric);
    }
}

输出:

true

在 Java 中使用 Apache 库检查一个字符串是否是一个数字

如果你使用的是 Apache 库,你可以使用 StringUtils 类的 isNumeric() 方法,如果它包含一个数字序列,则返回 true

import org.apache.commons.lang3.StringUtils;

public class SimpleTesting {

    public static void main(String[] args) {
        String str = "1123";
        boolean isNumeric = StringUtils.isNumeric(str);
        System.out.println(isNumeric);
        str = "123xyz";
        isNumeric = StringUtils.isNumeric(str);
        System.out.println(isNumeric);
    }
}

输出:

true
false

使用 Java 中的 Double 类检查一个字符串是否是一个数字

我们可以使用 Double 类的 parseDouble() 方法,将一个字符串转换为 double 并返回一个 double 类型的值。如果它不能被解析,它会抛出一个异常。

public class SimpleTesting {

    public static void main(String[] args) {
        String str = "1123";
        try {
        Double.parseDouble(str);
        System.out.println("It is numerical string");
        }catch(NumberFormatException e) {
            System.out.println("It is not numerical string");
        }
    }
}

输出:

It is not numerical string

在 Java 8 中检查一个字符串是否是一个数字

如果你使用的是 Java 8 或更高版本,那么你可以使用这个例子来检查数字字符串。这里,Character 类的 isDigit() 方法被传递到 allMatch() 作为方法引用。

public class SimpleTesting {

    public static void main(String[] args) {
        String str = "1123";
        boolean isNumeric = str.chars().allMatch( Character::isDigit );
        System.out.println(isNumeric);
        str = "ab234";
        isNumeric = str.chars().allMatch( Character::isDigit );
        System.out.println(isNumeric);
    }
}

输出:

true
false

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Java 中的纸牌洗牌

发布时间:2023/05/16 浏览次数:72 分类:Java

本文介绍如何在 Java 中洗一副牌。使用 Java 中的传统循环打乱 ArrayList。类似地,在 Java 中,各种方法允许用户随机播放元素。下面是演示此过程的代码块。

Java 中将列表转换为 ArrayList

发布时间:2023/05/16 浏览次数:155 分类:Java

在 Java 中将 List 转换为 ArrayList 的方法。在本篇文章中,我们讨论了如何在 Java 中将列表转换为 ArrayList。

Java 中 ArrayList 和 LinkedList 的区别

发布时间:2023/05/16 浏览次数:126 分类:Java

本文介绍 Java 中 ArrayList 和 LinkedList 的区别。ArrayList 和 LinkedList 都用于存储数据,但由于实现类型的不同而存在一些差异。

在 Java 中将 ArrayList 转换为 Set

发布时间:2023/05/16 浏览次数:182 分类:Java

本文介绍 Java 中 ArrayList 到 Set 的转换。ArrayList 是 List 接口的实现类,用于以线性顺序存储数据,而 set 是具有 HashSet 类来存储数据的接口。

在 Java 中将 ArrayList 转换为 Int 数组

发布时间:2023/05/16 浏览次数:95 分类:Java

本文讨论了在 Java 中将 ArrayList 转换为 int Array 的四种方法。使用 for 循环将 Arraylist 转换为 Int 数组; 使用 Object[] toArray() 函数将 Arraylist 转换为 Int 数组

Java 中比较 ArrayList

发布时间:2023/05/16 浏览次数:137 分类:Java

在本教程中,首先,我们将使用 Java 中的比较方法比较两个数组列表。在将其应用于数组列表之前,我们还将相同的方法应用于 Java 字符串。最后,我们演示了如何在比较之前对无序列

在 Java 中使用 ArrayList 进行合并排序

发布时间:2023/05/16 浏览次数:158 分类:Java

本文介绍了在 Java 中使用 ArrayList 实现归并排序的步骤。本教程介绍了在 Java 中使用 ArrayList 执行合并排序所需的步骤。合并排序使用分治法对数组或 ArrayList 中的项目进行排序。

在 Java 中隐藏设置为 ArrayList

发布时间:2023/05/16 浏览次数:127 分类:Java

在 Java 中将 Set 转换为 ArrayList。在 Java 中将 Set 转换为 ArrayList 在下面的代码中,我们只是初始化一个 set,然后使用 addAll() 方法将其转换为 ArrayList。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便