Answers for "how to replace space with comma in javascript"

4

js replace space

// replaces space with '_'
str = str.replace(/ /g, "_");
// or
str = str.split(' ').join('_');
Posted by: Guest on May-11-2021
0

javacript string add space after commas

"1,2, 3,4,5".replace(/,(?=[^\s])/g, ", ");
> "1, 2, 3, 4, 5"
Posted by: Guest on December-04-2020

Code answers related to "how to replace space with comma in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language