join - Liquid Filter Reference - 0.10.11
| Filter Name | join |
| Group | Arrays |
| Version | 0.10.11 |
Description
Combines the items in an array into a single string using the argument as a separator.
Examples
{% assign an_array = "scissors, paper, rock" | split: ", " %}
{{ an_array | join: " beats " }}
scissors beats paper beats rock
Back to Liquid Reference for 0.10.11
Back to Documentation