Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 tried the below stuffs.

//This removes all the spaces even the space between the words 
// which i want to be kept
$new_string = preg_replace('/s/u', '', $old_string); 

Is there any solution for this ?

Updated:-

Input String:-

"
Hello Welcome
                             to India    "

Output String:-

"Hello Welcome to India"
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
289 views
Welcome To Ask or Share your Answers For Others

1 Answer

$cleanStr = trim(preg_replace('/ss+/', ' ', str_replace("
", " ", $str)));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...