> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anlytic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Repeat

Herhaalt een tekstwaarde een opgegeven aantal keren. Een aantal lager dan 1 retourneert Null.

**Categorie:** `text`

**Syntax:**

```
Repeat([tekst_kolom], aantal)
```

**Retourneert:** `StringColumn`

**Contextfiltering:** ✓ Ja

## Parameters

| Naam         | Type           | Vereist | Beschrijving                                  |
| ------------ | -------------- | ------- | --------------------------------------------- |
| `tekenreeks` | `text\|kolom`  | ✓ Ja    | De tekst die de functie herhaalt.             |
| `aantal`     | `getal\|kolom` | ✓ Ja    | Het aantal keren dat de tekst wordt herhaald. |

**Toegestane kolomtypen:** STRING, TEXT

## Validatie

* Minimum parameters: 2
* Maximum parameters: 2

## Voorbeelden

```
Repeat([Scheidingsteken], 3)
```

Herhaalt elk scheidingsteken drie keer.

## Gerelateerde functies

* [Concat](concat) - Verschillende waarden combineren in plaats van er één te herhalen
* [Len](len) - Het aantal tekens in de herhaalde waarde tellen
