Back to Hugo

strings.Split

docs/content/en/functions/strings/Split.md

0.161.1394 B
Original Source

Examples:

go-html-template
{{ split "tag1,tag2,tag3" "," }} → ["tag1", "tag2", "tag3"]
{{ split "abc" "" }} → ["a", "b", "c"]

[!note] The strings.Split function essentially does the opposite of the collections.Delimit function. While split creates a slice from a string, delimit creates a string from a slice.