Monday, February 23, 2026
HomeLanguagesRemove new lines from string in PHP

Remove new lines from string in PHP

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;
?> 


RELATED ARTICLES

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS