Reads the string and removes all leading white spaces.
LTrim( String )
The string without leading white spaces.
LTrim(" abc ") // Returns the string "abc ". LTrim(" abc") // Returns the string "abc".