java中判断字符串是否为纯数字  

 
 方法一:利用正则表达式

public class Testone {
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.

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Testone {
public static void main(String[] args){
String str="123456";
Pattern pattern = Pattern.compile("[0-9]{1,}");
Matcher matcher = pattern.matcher((CharSequence)str);
boolean result=matcher.matches();
if (result == true) {
System.out.println("该字符串是纯数字");
}else{
System.out.println("该字符串不是纯数字");
}
}
}

相关文章:

  • 2021-09-27
  • 2022-02-03
  • 2022-12-23
  • 2022-12-24
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-07
  • 2021-12-19
  • 2021-11-11
  • 2022-02-05
相关资源
相似解决方案