Removes all whitespace characters from a string.
The input string.
A new string with all spaces, tabs, and line breaks removed.
1.1.0
stripWhitespace(" Hello World \n "); // "HelloWorld"stripWhitespace(" a b c "); // "abc" Copy
stripWhitespace(" Hello World \n "); // "HelloWorld"stripWhitespace(" a b c "); // "abc"
Removes all whitespace characters from a string.