How would I use the PHP function preg_match() to test a string to see if any spaces exist?
Example
"this sentence would be tested true for spaces"
"thisOneWouldTestFalse"
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re interested in any white space (including tabs etc), use
\sif you’re just interested in spaces then you don’t even need a regex: