join v1.9.1 Combines the items in an array into a single string using the argument as a separator. Input 12{% assign beatles = "John, Paul, George, Ringo" | split: ", " %}{{ beatles | join: " and " }} Output 12John and Paul and George and Ringo