Need help with a regex for alphanumeric password, with at least 1 number and character, and the length must be between 8-20 characters.
I have this but doesn't seem to be working (it doesn't have length requirements either):
^[A-Za-z0-9]*[A-Za-z][A-Za-z0-9]*$