Answers for "replace with line break in javascript"

1

javascript replace line breaks with br

function nl2br(str){
 return str.replace(/(?:\r\n|\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

replace line break with html line break js

let multilineString = `My
text\r1\r\n2\n3\n\r4
is
here`;

let htmlText = multilineString.replace(/(\r\n|\n\r|\r|\n)/g, '<br>');

console.log('Multiline string: ' + multilineString);
console.log('HTML text: ' + htmlText);
Posted by: Guest on December-04-2020

Code answers related to "replace with line break in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language