sort
sort
Sorts items in an array by a property of an item in the array. The order of the sorted array is case-sensitive.
Input
{% assign my_array = "zebra, octopus, giraffe, Sally Snake" | split: ", " %} {{ my_array | sort | join: ", " }}
Output
Sally Snake, giraffe, octopus, zebra
© 2005, 2006 Tobias Luetke
Licensed under the MIT License.
https://shopify.github.io/liquid/filters/sort/