文件中有文本作为示例:
<div class="from">jack</span></div>
hey u
<div class="from">ron</span></div>
bye
我正在尝试删除“”之后的新行标记并替换“|”
我需要的结果是:
<div class="from">jack</span></div>|hey u
<div class="from">ron</span></div>|bye
我试过这个,但认为我弄错了,因为它可以完成工作。
$string = file_get_contents($filename);
$string = str_replace('/(<\/span><\/div>\r\n)', '|', $string);
file_put_contents($filename, $string);
什么是正确的方法?
谢谢