Validate Password strength
(?=.*[A-Z])        # must contain 1 uppercase letter
(?=.*[0-9])        # must contain 1 digit
(?!.\n)            # must not contain a newline character
(?!.*\s)           # must not contain any whitespace characters
(?=.*[!$#+@%&])    # nust contain one of these symbols
.{8,}              # match a...
Submitted by anonymous - 10 years ago