// Match at least one uppercase letter,
// at least one lowercase letter,
// at least one digit
// and includes 12 or more symbols
String validPassRegex = "^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=S+$).{12,}$";
// and special characters:
String validPassRegex2 = "^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%^&+=])(?=S+$).{8,}$";