LTRIM function
Description
LTRIM(str) returns a string with all all leading spaces removed from from str.
Examples
LTRIM(" John Doe") returns "John Doe"
LTRIM(" ") returns an empty string (length=0)
Calculator
LTRIM(str) returns a string with all all leading spaces removed from from str.
LTRIM(" John Doe") returns "John Doe"
LTRIM(" ") returns an empty string (length=0)
Calculator