Open In App

Remove new lines from string in PHP

Last Updated : 20 Oct, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

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 geeksforgeeks.
Output : Hello welcome to geeksforgeeks.
Remove the new line between Hello and geeksforgeeks.

Input : I
        love
        geeksforgeeks
Output : I love geeksforgeeks

The idea is to use str_replace()




<?php
$text = "Hello \nwelcome to \ngeeksforgeeks";
echo $text;
  
echo "\n";
$text = str_replace("\n", "", $text);
echo $text;
?> 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads