javascript remove new line and space code example
Example 1: javascript remove all newlines
/\r?\n|\r/g
let foo = 'bar\nbar';
foo = foo.replace(/\r?\n|\r/g, " ");
console.log(foo);
Example 2: Remove line breaks with JavaScript
String.replace(/(\r\n|\n|\r)/gm," ")
Example 3: javascript remove final newline from string
str.replace(/\n*$/, "");
Example 4: remove spaces and line breaks javascript
const originalString = `
<div>
<p>Hey that's <span>somthing</span></p>
</div>
`;
const strippedString = originalString.replace(/(<([^>]+)>)/gi, "");
console.log(strippedString);