CONCATENATE
The CONCATENATE function concatenates several strings into a single string.
If defined, the Separator
property will be inserted between the concatenated strings.
Input
Number of Connections: Min: 1/Max:Infinite
Input | Data Type | Description |
InputN | String | The string(s) to concatenate. |
Output
Output | Data Type | Description |
Output1 | String | The concatenated string. |
Property
Name | Property Type | Description |
Separator | String | A separator that is inserted between the concatenated strings. |
NoSeparatorWhenEmpty | boolean | If set to True, a separator is not inserted between concatenated inputs if an input is an empty string or null. |
Example
| Property | Output |
Input 1 | 5/ | Separator | (none) | 5/1/2003 |
Input 2 | 1/ | | | |
Input 3 | 2003 | | |
| Property | Output |
Input 1 | usr | Separator | / | usr/local/bin |
Input 2 | local | | | |
Input 3 | bin | | | |