Remove extra spaces but not space between two words

前端 未结 6 1929
忘掉有多难
忘掉有多难 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:10

    Try this, this will also remove all  

    $node3 = htmlentities($node3, null, 'utf-8');
    $node3 = str_replace(" ", "", $node3);
    $node3 = html_entity_decode($node3);
    
    $node3 = preg_replace('/^\s+|\s+$|\s+(?=\s)/', '', $node3);
    

提交回复
热议问题