ref: 3b2fe3cd33b74166c3debec9826826f2b5a54fd9
dir: /docs/content/en/functions/strings.Repeat.md/
--- title: strings.Repeat # linktitle: description: Returns INPUT repeated COUNT times. godocref: date: 2018-05-31 publishdate: 2018-05-31 lastmod: 2018-05-31 categories: [functions] menu: docs: parent: "functions" keywords: [strings] signature: ["strings.Repeat COUNT INPUT"] workson: [] hugoversion: relatedfuncs: [] deprecated: false --- ``` {{ strings.Repeat 3 "yo" }} → "yoyoyo" {{ "yo" | strings.Repeat 3 }} → "yoyoyo" ```