sections
{{ input | sections: '<beginning key>', '<ending key>', '<array size limit (optional)>', '<nth occurrence of beggining key (optional)>', '<nth occurrence of ending key (optional)>' }}{% assign text = 'use the keys to find multiple sections of text between keys and cut out the text between two keys.' %}
{% assign sections = text | sections: 'keys', 'text' %}
{% for section in sections %}
{{section}}
{% endfor %} to find multiple sections of
and cut out the
.
{% assign text = 'use the keys to find multiple sections of text between keys and cut out the text between two keys.' %}
{% assign sections = text | sections: 'keys', 'text', 1 %}
{% for section in sections %}
{{section}}
{% endfor %}Last updated