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