How would you create a regular expression for a value that should contain at least one number? The user can enter any special character, letter etc., but should contain at least one number.
I tried with pattern="[\w+]{6,20}"
and
(?=.*\d)(*[a-z])(*[A-Z]).{6,20}
Neither are working.