我正在尋找使用正則表達式刪除多個換行符。說我有這樣的文字:刪除PHP中的各種空格
"On the Insert tab\n \n\nthe galleries include \n\n items that are designed"
那麼我想
"On the Insert tab\nthe galleries include\nitems that are designed"
來取代它所以我的要求是:
- 它會刪除所有的多換行符並將用一個換行符
- 它會刪除所有的多個空格,將與一個空格替換
我搜索了很多
這裏是你的一部分空間:: http://stackoverflow.com/questions/2368539/php-replacing-multiple-spaces-with-a-single-space –
@Sudhir我可以刪除多個空格,但我也需要刪除多個換行符。 –
看到這裏:: http://stackoverflow.com/questions/6360566/replace-multiple-newline-tab-space –