java中判断字符串是否为纯数字,正则表达式判断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 Matcher;
import Pattern;
public class Testone {
public static void main(String[] args){
时间正则表达式javaString str="123456";
Pattern pattern = Patternpile("[0-9]{1,}");
Matcher matcher = pattern.matcher((CharSequence)str);
boolean result=matcher.matches();
if (result == true) {
System.out.println("该字符串是纯数字");
}else{
System.out.println("该字符串不是纯数字");
}
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。