concat

다수의 배열을 하나로 연결(결합)합니다. 결과 배열에는 입력된 모든 배열 항목이 포함됩니다.

입력


{% assign fruits = "apples, oranges, peaches" | split: ", " %}
{% assign vegetables = "carrots, turnips, potatoes" | split: ", " %}

{% assign everything = fruits | concat: vegetables %}

{% for item in everything %}
- {{ item }}
{% endfor %}

출력

- apples
- oranges
- peaches
- carrots
- turnips
- potatoes

concat 필터로 두 개 이상의 배열을 연결할 수도 있습니다.

입력


{% assign furniture = "chairs, tables, shelves" | split: ", " %}

{% assign everything = fruits | concat: vegetables | concat: furniture %}

{% for item in everything %}
- {{ item }}
{% endfor %}

출력

- apples
- oranges
- peaches
- carrots
- turnips
- potatoes
- chairs
- tables
- shelves