Answers for "js replace line breaks"

8

javascript remove line breaks from string

var stringWithLineBreaks = `
O boy 
I've got 
Breaks
`;
var stringWithoutLineBreaks = stringWithLineBreaks.replace(/(\r\n|\n|\r)/gm, "");//remove those line breaks
Posted by: Guest on August-05-2019
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
2

javascript replace \n

var r = "I\nam\nhere";
var s = r.replace(/\n/g,' ');
Posted by: Guest on June-24-2020

Code answers related to "js replace line breaks"

Code answers related to "Javascript"

Browse Popular Code Answers by Language