ltrim
Syntax
ltrim(X)
Arguments
X is a string scalar or vector.
Details
Remove leading spaces from a character expression.
Examples
ltrim("    I love this game!");
// output
I love this game!
        ltrim(X)
X is a string scalar or vector.
Remove leading spaces from a character expression.
ltrim("    I love this game!");
// output
I love this game!