Excerpt | ||
---|---|---|
| ||
trim(string) Removes leading and trailing white spaces from a string. |
Function: trim()
Removes leading and trailing white spaces from a string, returning the cleansed string.
...
Argument | Type | Description |
---|---|---|
string | String | The string to be cleansed. |
Examples
trim(" ABCDEF ")
Returns "ABCDEF".
See Also
...