hi, I need a regular expression which accepts the alphabets UPPER CASE,lower case and digits minimum character is 5 and maximum character is 20. This is my current Reg Ex.
^[A-Za-z\d]{5,20}$
The issue that i am facing with the current Regular expression is, if i enter 5 spaces it accepts. so i want the user to enter password without space.