Update multilingual page

This commit is contained in:
Ryan Watters
2017-02-26 19:27:05 -06:00
parent 495d88ef9b
commit 6cf783469e
74 changed files with 985 additions and 462 deletions
+6 -7
View File
@@ -1,24 +1,23 @@
---
title: split
linktitle:
description:
linktitle: split
description: splits a string into substrings separated by a delimiter
godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
tags: []
categories: [functions]
toc:
tags: [strings]
signature:
workson: []
hugoversion:
relatedfuncs: []
deprecated: false
draft: false
aliases: []
---
## Example
`split` splits a string into substrings separated by a delimiter.
* `{{split "tag1,tag2,tag3" "," }}` → ["tag1" "tag2" "tag3"]
## Advanced Example