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 a word?
- How to match a plus sign in PHP regex?
- How to use PHP regex to match an exact string?
- How to use PHP regex to match UUID?
- How to match a space using PHP regex?
- How to remove non-printable characters using PHP regex?
- How to match a double quote in PHP regex?
- How to use PHP regex to match special characters?
- How to use PHP regex to match UTF8?
- How to use PHP regex to match URL path?
See more codes...