Answers for "regex replace whitespace with single space"

2

replace multiple spaces with single space javascript

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

regex ignore spaces

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

whitespace regex

\s is the regex character for whitespace. It matches spaces, new lines, carriage returns, and tabs.
Posted by: Guest on October-15-2020

Code answers related to "regex replace whitespace with single space"

Code answers related to "Javascript"

Browse Popular Code Answers by Language