“JavaScript entfernen alle Newlines” Code-Antworten

JavaScript entfernen alle 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 */
Web Surfer

JavaScript entfernen Zeilenumbrüche aus der Zeichenfolge

var stringWithLineBreaks = `
O boy 
I've got 
Breaks
`;
var stringWithoutLineBreaks = stringWithLineBreaks.replace(/(\r\n|\n|\r)/gm, "");//remove those line breaks
Grepper

Ähnliche Antworten wie “JavaScript entfernen alle Newlines”

Fragen ähnlich wie “JavaScript entfernen alle Newlines”

Weitere verwandte Antworten zu “JavaScript entfernen alle Newlines” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen