mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-01 04:37:37 +00:00
20 lines
445 B
Markdown
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"
|
|
```
|