Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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"

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
265 views
Welcome To Ask or Share your Answers For Others

1 Answer

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...