PHP multiple new lines

前端 未结 4 1078
伪装坚强ぢ
伪装坚强ぢ 2021-01-05 16:27

I\'m a little stuck. How do I remove multiple newlines which are in a row with one newline. There could be anything up to 20 newlines next to each other. For example

4条回答
  •  悲&欢浪女
    2021-01-05 17:02

    $str = 'James said hello\n\n\n\n Test\n Test two\n\n';
    echo preg_replace('{(\\\n)\1+}','$1',$str);
    

提交回复
热议问题