Remove all whitespace from a String
String removeWhitespace(String s) { if (s.isEmpty) { return ''; } return concatStrings(words(s)); }