Joins String A and String B with Separator, appends Suffix, and outputs the result to Combined String. Useful for assembling file paths and the like.
- The default for
Separator is a single space, and the default for Suffix is an empty string
- When B is empty, no Separator is added either (it becomes
A + Suffix). Suffix is always appended, whether or not B is present
- It re-emits whenever any of A, B, Separator, or Suffix changes
- The node shows only a preview of the combined result. Separator and Suffix are settings on the Control UI side
Input ports
| Port ID | Type |
String A | string |
String B | string |
Output ports
| Port ID | Type |
Combined String | string |
Scriptable members
| Path | Type |
inputA | string |
inputB | string |
separator | string |
suffix | string |
Synapse Apps (scripting)
await synapse.modules.create({ type: "StringCombine" })