I am trying to make a check in PHP if a user changes their password their new password must be 8 or more characters and with at least 1 non-alphanumeric password. How should I check this and what would the regex be?
Checking the length is the easy part strlen >= 8
. My problem is regular expressions. I really have no clue about regular expressions even after years of studying computer science.
Thanks