string required default (empty)The text to trim. Characters are removed from its left end. AA does not pre-trim this value, so any leading whitespace is kept and is available for ltrim to strip when chars asks for it.
chars optional default (empty - strips nothing)The set of single characters to strip from the left, given one after another with no separator (for example 0 for zeros, a space for spaces, .,; for those three punctuation marks). It is a character set, not a prefix string. PHP range syntax like a..z is allowed. When chars is omitted the set is empty and ltrim strips nothing, returning the string unchanged - pass a space to remove leading spaces.
{ltrim:0042:0}
{ltrim:xxhello:x}
[{ltrim: indented line: }]
[{ltrim: indented line}]
{ltrim:Mr. Smith:Mr. }
{ltrim:a1b2c3:a..z}