2020-03-18 18:46:47 -04:00
|
|
|
---
|
|
|
|
page_title: concat - Functions - Configuration Language
|
2020-04-02 19:39:47 -04:00
|
|
|
sidebar_title: concat
|
2020-03-18 18:46:47 -04:00
|
|
|
description: The concat function combines two or more lists into a single list.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `concat` Function
|
|
|
|
|
|
|
|
`concat` takes two or more lists and combines them into a single list.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2020-05-29 17:12:05 -04:00
|
|
|
```shell-session
|
2020-03-18 18:46:47 -04:00
|
|
|
> concat(["a", ""], ["b", "c"])
|
|
|
|
[
|
|
|
|
"a",
|
|
|
|
"",
|
|
|
|
"b",
|
|
|
|
"c",
|
|
|
|
]
|
|
|
|
```
|