Purpose:
Removes spaces or other characters at the beginning of the string. If the second parameter is specified, all characters contained in this string up to the first character not contained are removed. See also Atrim$ and Rtrim$.
Parameter:
String Source string
String (optional) String that contains all characters that are to be removed up to the first character not contained in the source string. Default: blank space.
Return value:
String
Example:
Ltrim$(' Hello World') Result: 'Hello World'
Ltrim$(' Hello World','olleH ') Result: 'World'