ltrim

Syntax

ltrim(X)

Arguments

X is a STRING scalar/vector, or table.

Details

Remove leading spaces from a character expression.

If X is a table, the function is applied only to columns of STRING type. Other column types are ignored.

Examples

ltrim("    I love this game!");
// output: I love this game!