Merge Text / Merge lists
Merge 2 strings of text into one.
🚧 Merge Lists
Merge two lists into one.
Overview
The Merge Lists feature combines two input lists into a single output list. This functionality is helpful for consolidating data, deduplication, or preparing lists for further processing.
Inputs
Name | ID | Description |
---|---|---|
First List | firstList | The first list to merge. |
Second List | secondList | The second list to merge. |
Outputs
Name | ID | Description |
---|---|---|
Success | success | A boolean indicating whether the merge was successful. |
Result List | resultList | The merged list resulting from the operation. |
Notes
- Ensure both lists are formatted correctly to avoid merge conflicts.
- Duplicates can be handled depending on the implementation logic (e.g., automatic deduplication or maintaining all entries).
Updated 29 days ago