Files
liquid/_filters/split.md
Tetsuro 6028ddb189 Changing sidebar to deeplinks
Fixed up navigation, collection contents are now output on one page. CSS cleanup
2015-08-26 19:07:51 -04:00

559 B

title
title
split

The split filter takes on a substring as a parameter. The substring is used as a delimiter to divide a string into an array. You can output different parts of an array using array filters.

Input

{% highlight liquid %}{% raw %} {% assign words = "Hi, how are you today?" | split: ' ' %}

{% for word in words %} {{ word }} {% endfor %} {% endraw %}{% endhighlight %}

Output

{% highlight text %} Hi, how are you today? {% endhighlight %}