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