--- 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" ```