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
Use preg_match as suggested by Josh:
Ouputs:
int(1) int(0) int(1)