Answers for "javascript remove new line and space"

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
1

Remove line breaks with JavaScript

String.replace(/(\r\n|\n|\r)/gm," ")
Posted by: Guest on December-10-2020
0

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);
Posted by: Guest on April-15-2021
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 "javascript remove new line and space"

Code answers related to "Javascript"

Browse Popular Code Answers by Language