class Liquid::Filters::Join

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

Extended Modules

Defined in:

liquid/filters/join.cr

Class Method Summary

Class Method Detail

def self.filter(data : Any, args : Array(Any) | Nil = nil) : Any #

[View source]