Reads the string and removes all leading white spaces.
TrimLeft( String )
string | The string that should be trimmed. |
---|
The string without leading white spaces.
TrimLeft(" abc ") // Returns the string "abc ". TrimLeft(" abc") // Returns the string "abc".