I need a regular expression to remove all spaces from a string.
The best I could do was this:
var spacefix = / /gi;
var out = data.replace(sp acefix,"");
Thanks so much, Dante.
The best I could do was this:
var spacefix = / /gi;
var out = data.replace(sp acefix,"");
Thanks so much, Dante.
Comment