“JavaScript Substitua newline por BR” Respostas de código

JavaScript Substitua newline por 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"
Grepper

JavaScript Substitua
com n

var str = $("#mydiv").html();
var regex = /<br\s*[\/]?>/gi;
$("#mydiv").html(str.replace(regex, "\n"));
Glamorous Goosander

Respostas semelhantes a “JavaScript Substitua newline por BR”

Perguntas semelhantes a “JavaScript Substitua newline por BR”

Mais respostas relacionadas para “JavaScript Substitua newline por BR” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código