Answers for "Replace new line character in javascript"

1

javascript replace newline

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

Code answers related to "Replace new line character in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language