java中验证是否是0-7之间的整数的正则表达式

2024-11-27 10:41:17
推荐回答(2个)
回答1:

^[0-7]$

回答2:

非零正整数
public static boolean IsIntNumber(String str) {
String regex = "^\\+?[1-9][0-9]*$";
return match(regex, str);
}