I'm very new to Java so please bear with me. My assignment: Ask the user to input a password and write a message stating whether or not it is acceptable. The password requirements:
- the password is at least 8 characters long
- it has upper case and lower case letters
- at least one letter is followed by a number
- it has one of the special characters $#?!_-=%
I really dont now what to do on number 3 and 4. Ive read something about regex but we didnt even had that in class. are there any other possible methods?
For number 3 you can use the cycle. Inside it, you can catch every letter via isLetter() method and then check the following element of your array by isDigit() method
For number 4 you can just compare every element of your array of char with special characters
Both of my examples include for-each loop, but you can use for loop as well. Good luck with your task!