join

v1.9.1

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

Input

{% assign beatles = "John, Paul, George, Ringo" | split: ", " %}
{{ beatles | join: " and " }}

Output


John and Paul and George and Ringo