TRIM
The TRIM function trims the white space from either the left and/or right of the input string.
Input/Output
Number of Connections: 1
| Input | Data Type | Description |
| Input1 | String | The string to trim. |
| Output | Data Type | Description |
| Output1 | String | The trimmed string. |
Property
| Name | Property Type | Description |
| Trim | choice |
Specifies whether to trim both the left and the right, or to trim only one side.
| Both | - |
Trims both the left and the right.
|
| Left | - |
Trims the left only.
|
| Right | - |
Trims the right only.
|
|
Topic
- If the original string contains only white space, an empty string is returned.
- The following Unicode values represent white space:0020,00A0,2000-200B,3000.