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:
February 17, 2025
:
all: Change shortcode usage and design to prevent invalid HTML (0fca8ef25)
Improve this page