String Merge
This function block merges multiple text inputs into a single combined string. Use it to build filenames, messages, labels, or any composite text from separate inputs.
π₯ Inputs
String β One of the text inputs to be merged. The block accepts multiple String inputs; the default layout provides two.
π€ Outputs
String β The merged result produced by concatenating all provided inputs in left-to-right order.
πΉοΈ Controls
Input size β Choose how many text inputs the block exposes. Increasing this will add more String inputs; decreasing will remove inputs.
βοΈ Running mechanism
On each run the block reads all available
Stringinputs (in the order they appear) and concatenates them into a single text value.The concatenated result is sent to the
Stringoutput socket for downstream use.If an input is empty or not provided, it contributes no characters to the final result (effectively treated as an empty string).
π― Features
Dynamic input count via the
Input sizecontrol β tailor the number of text inputs to your use case.Simple, deterministic concatenation β predictable ordering of parts makes it easy to build structured names and messages.
Lightweight and ideal for UI-level string assembly (filenames, labels, log lines).
π Usage tips
Arrange text parts left-to-right in the order you want them merged.
Use descriptive text inputs (for example: prefix, separator, counter, timestamp) to build clear filenames or identifiers.
π‘ Tips and Tricks
Combine with
String Inputto allow manual entry of parts, then merge to form a final label or filename.Use
Number InputandString Mergetogether when you need incremental counters in filenames.Add a timestamp by merging
Date-Time(or values fromDate-Time List) to create unique, traceable file names.Create structured export records by merging fields and feeding the result into
Data to JSONorCSV Exportfor logging.Build dynamic image filenames (prefix + timestamp + index) with
String Mergeand use the result withImage LoggerorImage Writeto save images with meaningful names.Combine with
Choose FolderorFile/Folder Operationsto assemble full paths for file operations.
π οΈ Troubleshooting
If a merged output seems to be missing parts, check the number of active
Stringinputs via theInput sizecontrol and ensure each input is connected or contains text.If separators are missing, add explicit separator inputs (for example, a dash or underscore) between parts before merging.
Last updated
Was this helpful?