Answers for "regex to remove \n from string"

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
2

remove n string

a_string = a_string.rstrip("\n")
Posted by: Guest on July-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language