> For the complete documentation index, see [llms.txt](https://docs.cascade.io/cascade/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cascade.io/cascade/functions-and-expressions/functions/text/concat.md).

# CONCAT

CONCAT( `text_1`, `[text_2...]` )

Returns a string created by concatenating all inputs

### Arguments

| Input       | Description                                 |
| ----------- | ------------------------------------------- |
| `text_1`    | String to concatenate                       |
| `text_2...` | Optional: additional strings to concatenate |

### Output

Outputs concatenated strings of `text` inputs

### Example

```
CONCAT( "Di", "ana", " Fire" )
>> "Diana Fire"
```
