Replace multiple newlines, tabs, and spaces

前端 未结 10 1911
情深已故
情深已故 2020-11-27 05:56

I want to replace multiple newline characters with one newline character, and multiple spaces with a single space.

I tried preg_replace(\"/\\n\\n+/\", \"\\n\",

10条回答
  •  不知归路
    2020-11-27 06:32

    If you just want to replace multiple tabs with a single tab, use the following code.

    preg_replace("/\s{2,}/", "\t", $string);
    

提交回复
热议问题