there is text in file as example:
<div class="from">jack</span></div>
hey u
<div class="from">ron</span></div>
bye
i am trying to delete the new line tag after "" and replace "|"
the result i need is:
<div class="from">jack</span></div>|hey u
<div class="from">ron</span></div>|bye
i tried this but think i got it wrong because it do the job.
$string = file_get_contents($filename);
$string = str_replace('/(<\/span><\/div>\r\n)', '|', $string);
file_put_contents($filename, $string);
what is the correct way?
thanks