LTRIM
Removes any leading whitespace from a given string.
Syntax
LTRIM(STRING)
Arguments
STRING
Type: string
A sequence of characters.
Returns
Type: string
STRING with any leading whitespaces removed.
Examples
| STRING | Output |
|---|---|
hey
|
hey
|
hey
|
hey
|
hey
|
hey
|
hey
|
hey
|
a b
|
a b
|
a b
|
a b
|