Answers for "how to trim more than one space and new line string in 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 "how to trim more than one space and new line string in javascript?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language