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.
Last updated:
March 8, 2025
:
content: Replace note shortcode calls with blockquote alerts (c540e6d29)
Improve this page