vote up 0 vote down star

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"

flag

64% accept rate

3 Answers

vote up 4 vote down check

If you're interested in any white space (including tabs etc), use \s

if (preg_match("/\\s/", $myString)) {
   // there are spaces
}

if you're just interested in spaces then you don't even need a regex:

if (strpos(" ", $myString) !== false)
link|flag
vote up 0 vote down

preg_match('/[\s]+/',.....)

link|flag
vote up 1 vote down

Also see this StackOverflow question that addresses this.

And, depending on if you want to detect tabs and other types of white space, you may want to look at the perl regular expression syntax for things such as \b \w and [:SPACE:]

link|flag
\b probably wouldn't help, since it will match the start and end of the string: eg preg_match("/\\b/", "abc") == true – nickf Sep 6 at 6:19
Good point, I was just thinking "word boundaries" and not remembering it would match on the ends. – JYelton Sep 6 at 6:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.