mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
475 B
475 B
title
| title |
|---|
| split |
Divides an input string into an array using the argument as a separator. split is commonly used to convert comma-separated items from a string to an array.
{% raw %}
{% assign beatles = "John, Paul, George, Ringo" | split: ", " %}
{% for member in beatles %}
{{ member }}
{% endfor %}
{% endraw %}
{% assign beatles = "John, Paul, George, Ringo" | split: ", " %}
{% for member in beatles %}
{{ member }}
{% endfor %}