密码检查程序应该接受用户输入的用户名和密码,并输出密码是有效还是无效。
我一直在尝试为此使用正则表达式,但遇到了问题。该模式适用于我的所有规则,但用户名规则除外。另外,有没有办法将输出从“true”或“false”更改为自定义的?
到目前为止我的代码:
import java.util.regex.*;
import java.util.Scanner;
public class validPassword {
private static Scanner scnr;
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
// Variable Management
String un, pw, req; // Variable Variable
System.out.println("Please enter a username: ");
// ^Need to implement so if it matches the password it's invalid^
un = input.nextLine(); // Gathers user's username input
System.out.println("Please enter a password: ");
pw = input.nextLine(); // Gathers user's password input
req = "(?=.*[0-9])(?=.*[a-zA-Z]).{8,}";
System.out.println(pw.matches(req)); // Can I customize the output?
}
}
我很感激任何帮助!:)