Java判断字符串是否为纯数字
时间: 2023-08-03 09:08:02 浏览: 166
javaScript 判断字符串是否为数字的简单方法
5星 · 资源好评率100%
您可以使用正则表达式来判断一个字符串是否为纯数字。以下是使用 Java 的示例代码:
```java
public class Main {
public static void main(String[] args) {
String str1 = "12345";
String str2 = "123abc";
boolean isNumeric1 = str1.matches("\\d+");
boolean isNumeric2 = str2.matches("\\d+");
System.out.println("str1 is numeric: " + isNumeric1);
System.out.println("str2 is numeric: " + isNumeric2);
}
}
```
输出结果:
```
str1 is numeric: true
str2 is numeric: false
```
在上面的代码中,我们使用了 `matches` 方法和正则表达式 `\\d+`。这个正则表达式表示一个或多个数字。如果字符串完全匹配这个正则表达式,则返回 `true`,表示该字符串是纯数字;否则返回 `false`,表示该字符串不是纯数字。
注意,上述代码中的 `\\d` 是正则表达式中表示数字的特殊字符,需要使用两个反斜杠进行转义。
阅读全文