trimStartString
Returns a copy of this string with any whitespace characters removed from the start.
Syntax
trimStartString(content)
Returns
(string) a copy of this string with any whitespace characters removed from the start.
Parameters
- content (string)
- source
Usage
echo(trimStartString("\t\ntest trim2\t\n")); // prints "test\t\n"