Answers for "regexp replace space at begin and end and consecutive"

2

replace multiple spaces with single space javascript

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

Code answers related to "regexp replace space at begin and end and consecutive"

Code answers related to "Javascript"

Browse Popular Code Answers by Language