Files
hugo/content/en/functions/strings.Repeat.md
T
2023-04-01 08:29:16 -07:00

17 lines
327 B
Markdown

---
title: strings.Repeat
description: Returns INPUT repeated COUNT times.
categories: [functions]
menu:
docs:
parent: functions
keywords: [strings]
signature: ["strings.Repeat COUNT INPUT"]
relatedfuncs: []
---
```go-html-template
{{ strings.Repeat 3 "yo" }} → "yoyoyo"
{{ "yo" | strings.Repeat 3 }} → "yoyoyo"
```