LTRIM
Deprecated version
This document refers to a deprecated version of the RQL programming language.
Please go here for documentation related to the latest supported version.
Removes white space characters from beginning, left side of a string.
Syntax
LTRIM(<string>)
Example
ltrim(" 123 ") // "123 "
ltrim("123 ") // "123 "
ltrim(null) // null