hugo/docs/content/en/functions/collections/Delimit.md
2023-12-04 15:24:01 +01:00

931 B

title description categories keywords action aliases
collections.Delimit Loops through any array, slice, or map and returns a string of all the values separated by a delimiter.
aliases related returnType signatures
delimit
functions/collections/Apply
functions/collections/In
functions/collections/Reverse
functions/collections/Seq
functions/collections/Slice
functions/strings/Split
string
collections.Delimit COLLECTION DELIMITER [LAST]
/functions/delimit

Delimit a slice:

{{ $s := slice "b" "a" "c" }}
{{ delimit $s ", " }} → b, a, c
{{ delimit $s ", " " and "}} → b, a and c

Delimit a map:

{{% note %}} The delimit function sorts maps by key, returning the values. {{% /note %}}

{{ $m := dict "b" 2 "a" 1 "c" 3 }}
{{ delimit $m ", " }} → 1, 2, 3
{{ delimit $m ", " " and "}} → 1, 2 and 3