> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/conversion-functions/arraytostring.md).

# ArrayToString

Converts array elements to strings separated by a delimiter

```mathematica
ArrayToString([1, 2, 3], ";") → "1;2;3"
ArrayToString(["text1", "text2", "text3"]) → "text1,text2,text3"
```

#### Inputs

`ArrayToString(array, [delimiter])`

* `array` - Array to convert to the string
* `[delimiter]` - **\[optional: "," by default]** -delimiter to separate array elements in the string
