html - RegEx: 8-20 characters, but no spaces allowed -
i'm trying create regular expression password field.
the requirements 8 - 20 characters, no spaces allowed.
i've tried ^[^-\s].{8,20}$ no avail...
remove dot.
^[^-\s]{8,20}$
i'm trying create regular expression password field.
the requirements 8 - 20 characters, no spaces allowed.
i've tried ^[^-\s].{8,20}$ no avail...
remove dot.
^[^-\s]{8,20}$
Comments
Post a Comment