Answers for "replace all spaces with one space js"

5

javascript replace all space

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

javascript replace two spaces with one

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 "replace all spaces with one space js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language