Answers for "trim also removes enter from string in javascript"

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
0

javascript remove final newline from string

// Remove the trailing newline(s) from a string
str.replace(/\n*$/, "");
Posted by: Guest on May-30-2020

Code answers related to "trim also removes enter from string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language