Answers for "how to replace n with br in html"

1

javascript replace line breaks with br

function nl2br(str){
 return str.replace(/(?:rn|r|n)/g, '<br>');
}
var stringWithNewLines= `Well this is a
a very broken
sentance`;
var stringWithBrs=nl2br(stringWithNewLines);
// stringWithBrs= "Well this is a<br>a very <br>broken<br>sentance"
Posted by: Guest on August-01-2019
0

html new line without <br

<pre>
Hello
Hello
</pre>
<pre> tag will print the content as it is.
<pre>

</pre>
It will will print a new line without <br> tag.
Posted by: Guest on April-08-2021
0

javascript replace spaces with br

str = str.replace(/s/g, "<br>");
Posted by: Guest on November-16-2020

Browse Popular Code Answers by Language