gpt4 book ai didi

java - 检查输入的号码

转载 作者:行者123 更新时间:2023-11-30 04:35:39 26 4
gpt4 key购买 nike

我是 Java 新手。我创建此代码是为了检查输入字段中的字符串或数字。

try {
int x = Integer.parseInt(value.toString());
} catch (NumberFormatException nFE) {
// If this is a string send error message
throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR,
" " + findValue + " must be number!", null));
}

如何创建相同的数字检查,但仅使用 if(){} 而无需 try-catch?

最佳答案

您可以将模式String#matches方法一起使用:-

String str = "6";

if (str.matches("[-]?\\d+")) {
int x = Integer.parseInt(str);
}

"[-]?\\d+" 模式将匹配任何数字序列,前面带有可选的-符号。

"\\d+"表示匹配一位或多位数字。

关于java - 检查输入的号码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13592964/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com