Answers for "remove double space from string with particular char javascript"

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 "remove double space from string with particular char javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language