Remove extra spaces but not space between two words

前端 未结 6 1928
忘掉有多难
忘掉有多难 2020-12-06 00:54

I want to remove extra spaces present in my string. I have tried trim,ltrim,rtrim and others but non of them are working and even trie

6条回答
  •  一生所求
    2020-12-06 01:23

    $cleanStr = trim(preg_replace('/\s\s+/', ' ', str_replace("\n", " ", $str)));
    

提交回复
热议问题