I am writing a Java program in Eclipse that checks whether the password entered meets the terms and conditions and is a valid password or not.
Terms and Conditions are:
- Password must contain at least one Uppercase Letter (any position)
- Password must contain at least one LowerCase Letter (any position)
- Password must contain a Number (any position)
- Password must be at least 6 characters long.