> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/string-functions/repeat.md).

# Repeat

Repeats (merges) a string value multiple times

```mathematica
Repeat("text ", 3) → "text text text"
Repeat("Meow ", 2) → "Meow Meow "
```

#### Inputs

`Repeat(string, count)`

* `string` - A text value to repeat
* `count` - Number of times to repeat
