PHP multiple new lines

前端 未结 4 1077
伪装坚强ぢ
伪装坚强ぢ 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:21

    $fixed_text = preg_replace("\n+", "\n", $text_to_fix);
    

    This should do it, assuming that the consecutive newlines are truly consecutive and don't have any whitespace (tabs, spaces, carriage returns, etc...) between them.

提交回复
热议问题