String Merge

This function block is designed to concatenate multiple input strings into a single cohesive string. It provides a simple and effective way to manipulate text data within your workflow.

πŸ“₯ Inputs

String Accepts the first string input that will be merged.

String Accepts the second string input that will be merged along with the first.

πŸ“€ Outputs

String The merged result of the input strings, providing a single output string.

πŸ•ΉοΈ Controls

Input size A dropdown menu that allows you to specify the sizes of the input strings, aiding in managing how many strings can be processed.

🎨 Features

Simple Concatenation Merges any number of input strings into one output string with ease.

Flexible Interface Allows for easy selection of input sizes to adapt the block to various string merging tasks.

πŸ“ Usage Instructions

  1. Connect Input Strings: Link two inputs, each providing a string you want to concatenate.

  2. Specify Input Size: Use the dropdown menu to select the desired input size for the strings if applicable.

  3. Evaluate: Run the block to see the concatenated output string.

πŸ“Š Evaluation

Upon execution, this function block takes the provided input strings and merges them into a single string, displaying the result in the output.

πŸ’‘ Tips and Tricks

Combining with Other Functions

You can use this function block in combination with String Operations or String Input blocks to dynamically build complex strings from different sources.

Add Separator

To add a space or any other separator between merged strings, you can modify inputs to include the separator string in your evaluation.

For example, use:

'FirstString' + ' ' + 'SecondString'
Using with Data from Users

This block can be effectively used to combine user inputs captured by String Input blocks, allowing for dynamic string assembly based on user interactions.

πŸ› οΈ Troubleshooting

No Output

If you see no output, double-check that both input strings are connected and contain valid string data.

Ensure neither of the inputs is empty as it can lead to an unexpected resultant string.

Unexpected Concatenation Result

If the result seems incorrect, ensure that both strings are formatted correctly. Check for accidental spaces or unwanted characters in the input strings that may affect the final output.

Last updated