我已经使用代码修复了我之前的问题,现在我希望它能够识别出4位数字以及更少或6位数字以及“Else if”。
当我输入字母以及在“Else if”中使用System.out.println拒绝它时。
String digit;
String regex;
String regex1;
regex = "[0-9]{5}";
String test;
String validLength = "5";
char one, two, three, four, five; {
System.out.println("In this game, you will have to input 5 digits.");
do {
System.out.println("Please input 5-digits.");
digit = console.next();
test = digit.replaceAll("[a-zA-Z]", "");
if (digit.matches(regex)) {
one = (char) digit.charAt(0);
two = (char) digit.charAt(1);
three = (char) digit.charAt(2);
four = (char) digit.charAt(3);
five = (char) digit.charAt(4);
System.out.println((one + two + three + four + five) / 2);
}
答案 0 :(得分:1)
此正则表达式应符合您的需要(使用前导零):
[0-9]{5}
你将使用while循环,循环直到满足这两个条件,如
while (!inputString.matches("[0-9]{5}")) {
// ask again and again
if (!isInteger(inputString)) {
// invalid input
} else {
if (inputString.length() < 5) {
// too low
} else if (inputString.length() > 5) {
// too high
}
}
}
你可以使用这样的辅助方法:
public boolean isInteger(String s) {
try {
Integer.parseInt(s);
} catch(NumberFormatException e) {
return false;
}
return true;
}