Answers for "javascript string replace space with comma"

4

js replace space

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

javascript replace multiple spaces with single space

var multiSpacesString="I  have     some big    spaces.";
var singleSpacesString=multiSpacesString.replace(/  +/g, ' ');//"I have some big spaces."
Posted by: Guest on August-02-2019

Code answers related to "javascript string replace space with comma"

Code answers related to "Javascript"

Browse Popular Code Answers by Language