Given a multiple line sentence or statement the task is to convert the whole statement in a
single line. See the example below.
Examples:
Input : Hello
welcome to neveropen.
Output : Hello welcome to neveropen.
Remove the new line between Hello and neveropen.
Input : I
love
neveropen
Output : I love neveropen
The idea is to use str_replace()
<?php $text = "Hello \nwelcome to \nneveropen"; echo $text; Â Â echo "\n"; $text = str_replace("\n", "", $text); echo $text; ?>Â |
