Files
liquid/filters/join.md
2016-04-02 18:46:32 -04:00

416 B

title
title
join

Combines the items in an array into a single string using the argument as a separator.

Input

```liquid {% raw %} {% assign beatles = "John, Paul, George, Ringo" | split: ", " %}

{{ beatles | join: " and " }} {% endraw %}


<p class="code-label">Output</p>
```text
{% assign beatles = "John, Paul, George, Ringo" | split: ", " %}

{{ beatles | join: " and " }}