Answers for "javascript strip newlines"

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 trim newline

str = str.replace(/^\s+|\s+$/g, '');
Posted by: Guest on May-14-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language