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