trim white space Removes white spaces in between a string, at the beginning and at the end
trim white space
String trimWhitespace(String param) { return param.toString().trim().split(' ').join(); }