How to remove new lines from string and replace with one empty space in PHP

1 Answer

0 votes
$s = "\nphp \n javascript nodejs \n c c++ python \n c#\n";

$s = trim(preg_replace('/\s\s+/', ' ', $s));

echo $s;




/*
run:

php javascript nodejs c c++ python c#

*/

 



answered Jun 24, 2020 by avibootz
...