Answers for "how to split at spaces and ignore multiple spaces javascript"

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
0

js strip multiple spaces

string = string.replace(/\s\s+/g, ' ');
Posted by: Guest on August-04-2021

Code answers related to "how to split at spaces and ignore multiple spaces javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language