Wednesday, September 25, 2024
Google search engine
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

Recent Comments