Liquid Filter Reference for reverse - v0.9.5
Filter Name | reverse |
Group | Arrays |
Version | 0.9.5 |
Description
Reverses the order of the items in an array. reverse
cannot reverse a string.
Examples
{% assign an_array = "earth, water, air, fire" | split: ", " %}
{{ an_array | reverse | join: ", " }}
fire, air, water, earth
Although reverse cannot be used directly on a string, you can split a string into an array, reverse the array, and rejoin it by chaining together filters:
{{ "Mary had a little lamb." | split: "" | reverse | join: "" }}
.bmal elttil a dah yraM
Back to Liquid Reference for 0.9.5
Back to Documentation