-
Notifications
You must be signed in to change notification settings - Fork 2
Trim string
ryannewington edited this page Jun 23, 2016
·
1 revision
This transform removes leading and/or trailing spaces from a string
Parameter | Description |
---|---|
Trim type | The type of trim to perform. You can trim the left, right or both ends of the string |
The transform accepts string values as the input
The transform accepts multiple input values, and processes each of them individually.
The transform returns a string value for each string input value
Input value | Trim type | Output value |
---|---|---|
" Text " | Left | "Text " |
" Text " | Right | " Text" |
" Text " | Both | "Text" |