HUGO
News Docs Themes Community GitHub

strings.Split

Returns a slice of strings by splitting the given string by a delimiter.

Syntax

strings.Split STRING DELIM

Returns

[]string

Alias

split

Examples:

{{ split "tag1,tag2,tag3" "," }} → ["tag1", "tag2", "tag3"]
{{ split "abc" "" }} → ["a", "b", "c"]

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.