PHP - detect whitespace between strings

后端 未结 7 2353
情书的邮戳
情书的邮戳 2020-12-03 09:42

How would I go about detecting whitespace within a string? For example, I have a name string like:

\"Jane Doe\"

Keep in mind that I don\'t want to trim or re

7条回答
  •  情歌与酒
    2020-12-03 10:33

    You may use something like this:

    if (strpos($r, ' ') > 0) {
        echo 'A white space exists between the string';
    }
    else
    {
        echo 'There is no white space in the string';
    }
    

    This will detect a space, but not any other kind of whitespace.

提交回复
热议问题