Recursively removes all spaces from a given string.
The input string from which to remove all spaces.
A new string with all spaces removed.
replaceAllSpaces("Hello World"); // "HelloWorld"replaceAllSpaces(" Leading spaces"); // "Leadingspaces"replaceAllSpaces("Trailing spaces "); // "Trailingspaces"replaceAllSpaces("NoSpacesHere"); // "NoSpacesHere"replaceAllSpaces(""); // "" Copy
replaceAllSpaces("Hello World"); // "HelloWorld"replaceAllSpaces(" Leading spaces"); // "Leadingspaces"replaceAllSpaces("Trailing spaces "); // "Trailingspaces"replaceAllSpaces("NoSpacesHere"); // "NoSpacesHere"replaceAllSpaces(""); // ""
Recursively removes all spaces from a given string.