> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vectorshift.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Combine Text Node

> Combine texts to singular output

<img alt="Combine Text Node" classname="w-full" src="https://mintcdn.com/vectorshift/YP4-JQlrCs6FGFt3/images/platform/pipelines/data-transformation/combine-text.png?fit=max&auto=format&n=YP4-JQlrCs6FGFt3&q=85&s=b11ee819869a750f9281ba7974805b03" width="663" height="409" data-path="images/platform/pipelines/data-transformation/combine-text.png" />

This node allows you to combine text inputs into a singular output.

## Node Inputs

1. Text: Text to combine
   * Type: `List<Text>`

## Node Outputs

1. Processed Text: The combined text
   * Type: `Text`
   * Example usage: `{{combine_text_0.processed_text}}`

## Example

The below example shows a pipeline that takes various text inputs (e.g., in this case "a" and "b") and combines them into a singular output (e.g., "ab").

1. Text Node: Contains the text "a"
2. Text Node: Contains the text "b"
3. Combine Text Node: Combines the text inputs into a singular output
   * Item1: `{{text_0.text}}`
   * Item2: `{{text_1.text}}`
4. Output Node: Displays the combined text
   * Output: `{{combine_text_0.processed_text}}`

<img src="https://mintcdn.com/vectorshift/YP4-JQlrCs6FGFt3/images/platform/pipelines/data-transformation/combine-text-example.png?fit=max&auto=format&n=YP4-JQlrCs6FGFt3&q=85&s=4bd879e1a6b860ad2b0903587ce204fb" alt="Combine Text Example" width="1904" height="834" data-path="images/platform/pipelines/data-transformation/combine-text-example.png" />
