Using preg_replace
, I need to define the regex PATTERN to match all instances of the newline sequence \r\n
exactly, EXCEPT that occuring at the very end of the text.
preg_replace(PATTERN,'"\r\n"',$text)
How do I specify PATTERN in this case?
Using preg_replace
, I need to define the regex PATTERN to match all instances of the newline sequence \r\n
exactly, EXCEPT that occuring at the very end of the text.
preg_replace(PATTERN,'"\r\n"',$text)
How do I specify PATTERN in this case?