Im trying to write a password complexity regular expression for php this is what i got so far i want it to require 6-12 chars 1 cap letter 1 number and allow symbols and small case letters. Any suggestions please let me know.
/(^[A-Za-z0-9]{1,}$){6,12}/
Live by the code, Die by the code!!
/(^[A-Za-z0-9]{1,}$){6,12}/
Live by the code, Die by the code!!