MERGE TWO OR MORE TEXTS¶
Concatenates two or more text values into a single string, inserting a configurable delimiter between each piece. Use this worker whenever you need to join label fragments, build composite identifiers, or assemble multi-part strings inline within a workflow.
When to use¶
Classification: process.
Tagged: concatenate, delimiter, join, merge, string, text, transform.
Inputs¶
| Label | ID | Type | Default | Required | Description |
|---|---|---|---|---|---|
| Base Text | base_text | text | — | The primary text string that forms the start of the merged output; leave empty if no fixed prefix is needed. | |
| Merge Text | merge_text | text | — | One or more additional text strings to append to the base text, each separated by the configured delimiter; repeatable for merging more than two values. | |
| Delimiter | delimiter | text | — | Character(s) inserted between each merged text segment (e.g. “, “, ” / “, or “_”); defaults to an empty string (no separator) if left blank. |
Outputs¶
| Label | ID | Type | Description |
|---|---|---|---|
| text_merge_output_1 | text_merge_output_1 | text | The final concatenated string produced by joining base_text and all merge_text values with the specified delimiter. |
Disciplines¶
- data.dataset.transform
Auto-generated from transformation schema. Worker id: text_merge_with_delimiter. Schema hash: bd079fd90c8c. Hand-curated docs in workerexamples/ override this page when present.