I am using this regex to verify a password contains at least one letter, one number, min 7 chars in PHP, how do I modify to dissallow any spaces?:
Thanks
PHP
/(?=.*\d)(?=.*[a-zA-Z]).{7,}$/
Thanks