Skip to content
Advertisement

PHP preg_replace replacing newlines, but nothing works

I have a text field retrieved by a Solr query that contains the body of an email. I am trying to replace embedded line breaks with paragraph tags via PHP like so:

JavaScript

When I show the result in my IDE/debugger the newline characters are not replaced and are still there:

Output example

I have been going through threads on this site trying patterns suggested by different people including “/s+/” and PHP_EOL and “/(rn|r|n)/” and nothing works. What am I doing wrong?

Advertisement

Answer

You are missing the delimiter around your regex strings and you are not assigning the value.
You can also reduce your regex:

JavaScript

You might want switch to the multibyte safe version. They work with Unicode and you don’t need delimiters there 😉

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement