PHP - detect whitespace between strings

后端 未结 7 2362
情书的邮戳
情书的邮戳 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:26

    Wouldn't preg_match("/\s/",$string) work? The advantage to this over strpos is that it will detect any whitespace, not just spaces.

提交回复
热议问题