mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
30 lines
679 B
Markdown
30 lines
679 B
Markdown
---
|
|
title: split
|
|
description: Returns a slice of strings by splitting STRING by DELIM.
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2022-11-06
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: "functions"
|
|
keywords: [strings]
|
|
signature: ["split STRING DELIM"]
|
|
workson: []
|
|
hugoversion:
|
|
relatedfuncs: []
|
|
deprecated: false
|
|
aliases: []
|
|
---
|
|
|
|
Examples:
|
|
|
|
```go-html-template
|
|
{{ split "tag1,tag2,tag3" "," }} → ["tag1", "tag2", "tag3"]
|
|
{{ split "abc" "" }} → ["a", "b", "c"]
|
|
```
|
|
|
|
|
|
{{% note %}}
|
|
`split` essentially does the opposite of [delimit]({{< ref "functions/delimit" >}}). While `split` creates a slice from a string, `delimit` creates a string from a slice.
|
|
{{% /note %}}
|