91名师指路-头部
91名师指路

java 验证是否为纯数字

由于某些原因,现在不支持支付宝支付,如需要购买源码请加博主微信进行购买,微信号:13248254750

代码如下:

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

联系博主    
用户登录遮罩层
x

账号登录

91名师指路-底部