Answers for "remove more than one whitespace from string javascript"

18

javascript remove all whitespaces

var spacesString= "Do I have spaces?"; 
var noSpacesString= myString.replace(/ /g,'');// "DoIhavespaces?"
Posted by: Guest on August-01-2019
0

js strip multiple spaces

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

Code answers related to "remove more than one whitespace from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language