Combine

Read with AI
All docs in one file (llms-full.txt)
StringCombine #Operation #Node
Combine

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 IDType
String Astring
String Bstring

Output ports

Port IDType
Combined Stringstring

Scriptable members

PathType
inputAstring
inputBstring
separatorstring
suffixstring

Synapse Apps (scripting)

await synapse.modules.create({ type: "StringCombine" })

Pages linking here