原 java 验证是否为纯数字
版权声明:本文为博主原创文章,请尊重他人的劳动成果,转载请附上原文出处链接和本声明。
本文链接:https://www.91mszl.com/zhangwuji/article/details/1244
代码如下:
package com.mszl.utils;
import java.util.regex.Pattern;
import static java.util.regex.Pattern.compile;
public class VerifyUtils {
// 验证是否为纯数字
public static boolean verifyInteger(String str){
Pattern pattern = compile("^[-+]?[0-9]+(\\.[0-9]+)?$"); // 带小数的
if(pattern.matcher(str).matches()){
return true;
} else {
return false;
}
}
public static void main(String[] args) {
System.out.println(verifyInteger("88"));
System.out.println(verifyInteger("abc"));
}
}
执行结果:
true
false
2020-08-04 13:06:01 阅读(536)
名师出品,必属精品 https://www.91mszl.com
博主信息