summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/strings/Repeat.md
blob: b6027368ed80503796bdc8008d86e6f673c5a0a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
title: strings.Repeat
description: Returns a new string consisting of zero or more copies of another string.
categories: []
keywords: []
params:
  functions_and_methods:
    aliases: []
    returnType: string
    signatures: [strings.Repeat COUNT INPUT]
aliases: [/functions/strings.repeat]
---

```go-html-template
{{ strings.Repeat 3 "yo" }} → yoyoyo
```