# Join

## Overview

![The Join Node.](/files/JvZnytxPHOLv5m1qpYWW)

The **Join Node** joins several **Strings** into one. For this, it receives an **Array** populated with the **Strings** to be joined and a separator as inputs. The output is a **String** composed of the **Strings** in the input **Array** separated by the given separator.

For instance, having the **Array** `[uno, dos, tres, cuatro, cinco]` and a semicolon separator (`;`) as inputs generates the **String** `uno;dos;tres;cuatro;cinco`.

[**Scope**](/incari-studio/2023.1/toolbox/overview.md#scopes): **Project**, **Scene**, **Function**, **Prefab**.

## Attributes

![The Join Node Attributes.](/files/V6pts33cw2IVPPihQcje)

| Attribute           | Type       | Description                                                                                                                                |
| ------------------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `Default separator` | **String** | The separator that will divide the parts of the joined **String**, such as a space or comma, if none is given in the **Input** **Socket**. |

## Inputs

| Input              | Type       | Description                                                                                  |
| ------------------ | ---------- | -------------------------------------------------------------------------------------------- |
| *Pulse Input* (►)  | **Pulse**  | A standard **Input Pulse**, to trigger the execution of the **Node**.                        |
| `Array of strings` | **Array**  | The **Array** containing the **Strings** to be joined.                                       |
| `Separator`        | **String** | The separator that will divide the parts of the joined **String**, such as a space or comma. |

## Outputs

| Output             | Type       | Description                                                                                                                            |
| ------------------ | ---------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| *Pulse Output* (►) | **Pulse**  | A standard **Output Pulse**, to move onto the next **Node** along the **Logic Branch**, once this **Node** has finished its execution. |
| `Joined string`    | **String** | The outputted joined **String**.                                                                                                       |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.incari.com/incari-studio/2023.1/toolbox/string/join.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
