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 zip code?
- How to use PHP regex with zero or more occurrences?
- How to use PHP regex to match UUID?
- How to use PHP regex with the "x" modifier?
- How to use PHP regex to match an XML tag?
- How to use PHP regex to get a YouTube video ID?
- How to use PHP regex to match a year?
- How to match strings starting with a certain string using PHP regex?
- How to use PHP regex to match special characters?
See more codes...