str_trim_left
Removes whitespace characters (space, tab, newline, carriage return, vertical tab, form feed) from beginning.
str_trim_left(
str
) -> STRING
Removes whitespace characters (space, tab, newline, carriage return, vertical tab, form feed) from beginning.
Syntaxe
var result = str_trim_left(" \tHello World\n ");
Arguments
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
str | yes | - | String to trim |