class Liquid::Filters::Join
- Liquid::Filters::Join
- Reference
- Object
Overview
join
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