java判断字符串是否是纯数字
时间: 2023-11-04 20:58:23 浏览: 157
方法一中,使用正则表达式来判断字符串是否是纯数字。具体的代码如下:
```java
public static void main(String[] args){
String str = "123456";
boolean result = str.matches("[0-9]+");
if(result == true){
System.out.println("该字符串是纯数字");
}else{
System.out.println("该字符串不是纯数字");
}
}
```
方法二中,使用Pattern和Matcher类来判断字符串是否是纯数字。具体的代码如下:
```java
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public static void main(String[] args){
String str = "123456";
Pattern pattern = Pattern.compile("[0-9]+");
Matcher matcher = pattern.matcher(str);
boolean result = matcher.matches();
if(result == true){
System.out.println("该字符串是纯数字");
}else{
System.out.println("该字符串不是纯数字");
}
}
```
请注意,以上代码中的正则表达式"[0-9]+"表示字符串中只包含一位或多位数字。
阅读全文