I have a quick question, I plan to use the following regex to test a password field:
/^\S{8,24}$/
The restrictions are:
Any character other than white-space is allowed, length between 8 and 24.
Does anyone anticipate any problems that might arise as a result of using this regex for a password?