sort_natural

大文字小文字を区別せずに、配列内の項目をソートします。

入力

{% assign my_array = "zebra, octopus, giraffe, Sally Snake" | split: ", " %}

{{ my_array | sort_natural | join: ", " }}

出力



giraffe, octopus, Sally Snake, zebra

ソートに使用する配列内の項目のどのプロパティを指定するかは、オプションの引数で指定できます。

{% assign products_by_company = collection.products | sort_natural: "company" %}
{% for product in products_by_company %}
  <h4>{{ product.title }}</h4>
{% endfor %}