Answers for "regex remove multiple spaces"

2

replace multiple spaces with single space javascript

string = string.replace(/\s\s+/g, ' ');
Posted by: Guest on July-19-2020
-1

regex to remove spaces

//..
return str.replace(/\s/g, '');
//..
Posted by: Guest on October-06-2020
2

regex ignore spaces

\s* ignore spaces
eg \s*yourregex\s*
Posted by: Guest on April-17-2020

Code answers related to "regex remove multiple spaces"

Code answers related to "Javascript"

Browse Popular Code Answers by Language