php-regexHow to use PHP regex to match a line break?
To match a line break in PHP using regex, use the \R character class. This character class matches any line break sequence, including \r, \n, and \r\n.
Example code
$string = "This is a string
with a line break";
if (preg_match('/\R/', $string)) {
echo "Line break found!";
}
Output example
Line break found!
Code explanation
\R: The character class that matches any line break sequence.preg_match(): The function used to match a regular expression against a string.
Helpful links
More of Php Regex
- How to use PHP regex to match special characters?
- How to use PHP regex with the "x" modifier?
- How to match a double quote in PHP regex?
- How to use PHP regex to match UUID?
- How to use PHP regex to match whitespace?
- How to match a plus sign in PHP regex?
- How to match a single quote in PHP regex?
- How to use quantifiers in PHP regex?
- How to use the "s" modifier in PHP regex?
- How to use PHP regex to match a boolean value?
See more codes...