hugo/docs/content/en/functions/strings/Repeat.md
2023-10-20 09:43:56 +02:00

20 lines
445 B
Markdown

---
title: strings.Repeat
description: Returns a new string consisting of zero or more copies of another string.
categories: [functions]
keywords: []
menu:
docs:
parent: functions
function:
aliases: []
returnType: string
signatures: [strings.Repeat COUNT INPUT]
relatedFunctions: []
aliases: [/functions/strings.repeat]
---
```go-html-template
{{ strings.Repeat 3 "yo" }} → "yoyoyo"
{{ "yo" | strings.Repeat 3 }} → "yoyoyo"
```