Answers for "remove enter key from string in javascript"

2

javascript remove all newlines

// regex global match for all variants of newlines
/\r?\n|\r/g

// example
let foo = 'bar\nbar';
foo = foo.replace(/\r?\n|\r/g, " "); /* replace all newlines with a space */
console.log(foo); /* bar bar */
Posted by: Guest on May-22-2020
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

Code answers related to "remove enter key from string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language