Answers for "how to replace a character with a line break js"

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 "how to replace a character with a line break js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language