mirror of https://github.com/gohugoio/hugo
693 B
693 B
title | description | categories | keywords | params | aliases | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
strings.Split | Returns a slice of strings by splitting the given string by a delimiter. |
|
|
Examples:
{{ split "tag1,tag2,tag3" "," }} → ["tag1", "tag2", "tag3"]
{{ split "abc" "" }} → ["a", "b", "c"]
[!note] The
strings.Split
function essentially does the opposite of thecollections.Delimit
function. Whilesplit
creates a slice from a string,delimit
creates a string from a slice.