I need a regex for jquery to check the password is between 8 to 32 character and consist of number and character.
Asked
Active
Viewed 237 times
Simple: /^(?=.{8,32}$)(?=.*[a-z]).*\d/i
(assuming you meant "letter" not "character".)