Leggere in inglese

Condividi tramite


Text.Repeat

Sintassi

Text.Repeat(text as nullable text, count as number) as nullable text

Informazioni su

Restituisce un valore di testo composto dal testo di input text ripetuto per count volte.

Esempio 1

Ripetere il testo "a" cinque volte.

Utilizzo

Text.Repeat("a", 5)

Output

"aaaaa"

Esempio 2

Ripetere il testo "helloworld" tre volte.

Utilizzo

Text.Repeat("helloworld.", 3)

Output

"helloworld.helloworld.helloworld."