summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/strings/Split.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/strings/Split.md')
-rw-r--r--docs/content/en/functions/strings/Split.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/content/en/functions/strings/Split.md b/docs/content/en/functions/strings/Split.md
new file mode 100644
index 000000000..e3e0ee13e
--- /dev/null
+++ b/docs/content/en/functions/strings/Split.md
@@ -0,0 +1,26 @@
+---
+title: strings.Split
+description: Returns a slice of strings by splitting the given string by a delimiter.
+categories: []
+keywords: []
+action:
+ aliases: [split]
+ related:
+ - functions/collections/Delimit
+ returnType: string
+ signatures: [strings.Split STRING DELIM]
+aliases: [/functions/split]
+---
+
+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.
+
+[`collections.Delimit`]: /functions/collections/delimit/
+{{% /note %}}