Remove extra spaces but not space between two words

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

    I Think what we are supposed to do here is we should not look for 1 space we should look for consecutive two spaces and then make it one. So this way it would not replace the space between the text and also remove any other space.

    $new_string= str_replace(' ', ' ', $old_string)

    for more on Str Replace

提交回复
热议问题