php-regexHow to use PHP regex to match whitespace?
Using PHP regex to match whitespace is a simple task. The following example code block will match any whitespace character:
$regex = '/\s/';
The output of this code will be a boolean value of true
if a whitespace character is found, and false
if not.
Code explanation
-
\s
: This is the regex pattern for matching whitespace characters. -
$regex
: This is the variable that stores the regex pattern. -
/
: These are the delimiters that enclose the regex pattern.
Helpful links
More of Php Regex
- How to use PHP regex to match a nbsp HTML whitespace?
- How to use PHP regex to match URL path?
- How to use PHP regex to match special characters?
- How to use PHP regex to match a zip code?
- How to match a double quote in PHP regex?
- How to use PHP regex with zero or more occurrences?
- How to use PHP regex to match an exact string?
- How to use PHP regex with the "x" modifier?
- How to use PHP regex to match UUID?
See more codes...