Appearance
trim() - Remove leading and trailing whitespaces
string trim( string str ); string trim( string str, string ch);
Remove all leading and trailing whitespace (or other characters 'ch') from the string 'str' and return a new string.
ltrim(3), rtrim(3)