StringJoiner
Join multiple string inputs into a single string output.
Key Features
- Accepts multiple variadic string inputs and joins them.
- Useful for combining string outputs from parallel pipeline branches.
- Requires no configuration — works out of the box.
Configuration
- Drag the
StringJoinercomponent onto the canvas from the Component Library. - Click the component to open the configuration panel.
- Configure the parameters as needed.
Connections
StringJoiner accepts multiple input_str values from any components that output strings. It outputs a single output string.
Usage Example
components:
StringJoiner:
type: testing.sample_components.joiner.StringJoiner
init_parameters:
Parameters
Inputs
| Parameter | Type | Default | Description |
|---|---|---|---|
| input_str | Variadic[str] | One or more strings to join. |
Outputs
| Parameter | Type | Default | Description |
|---|---|---|---|
| output | str | The joined string output. |
Init Parameters
These are the parameters you can configure in Pipeline Builder:
| Parameter | Type | Default | Description |
|---|
Run Method Parameters
These are the parameters you can configure for the component's run() method. This means you can pass these parameters at query time through the API, in Playground, or when running a job. For details, see Modify Pipeline Parameters at Query Time.
| Parameter | Type | Default | Description |
|---|---|---|---|
| input_str | Variadic[str] | One or more strings to join. |
Was this page helpful?