function nl2br(str){ return str.replace(/(?:\r\n|\r|\n)/g, ''); } var stringWithNewLines= `Well this is a a very broken sentance`; var stringWithBrs=nl2br(stringWithNewLines); // stringWithBrs= "Well this is aa very brokensentance"