I am currently writing a small script that checks the contents of each string.
I was wondering what the REGEX would be to make sure that a string has a letter (upper
A letter is \pL, a number is \pN and a special char is [what you want], here I assume it is not a letter and not a number, so the regex looks like:
\pL
\pN
[what you want]
/^(?=.*?\pL)(?=.*?\pN)(?=.*[^\pL\pN])/