Answers for "javascript replace all new line characters in string"

6

how to replace all characters in a string javascript

const string = "a, b, c, d, e, f";
string.replace(/,/g, '');
console.log(string) //a b c d e f
Posted by: Guest on March-24-2021
2

javascript replace \n

var r = "I\nam\nhere";
var s = r.replace(/\n/g,' ');
Posted by: Guest on June-24-2020

Code answers related to "javascript replace all new line characters in string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language