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}$


Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -