判断字符串是不是几位数的整数

编程

    /**

* 判断字符串是不是几位数的整数

* @param str

* @param nums 位数null表示不判断位数

* @return false 不是 ,true 是

*/

public static boolean isNumbers(String str, Integer nums) {

Pattern pattern = Pattern.compile("^[-\+]?[\d]*$");

if (null == str) {

return false;

} else {

if (null == nums) {

return pattern.matcher(str).matches();

} else if (str.length() == nums) {

return pattern.matcher(str).matches();

} else {

return false;

}

}

}

 

以上是 判断字符串是不是几位数的整数 的全部内容, 来源链接: utcz.com/z/515594.html

回到顶部