Text.Repeat
Text.Repeat(text as nullable text, count as number) as nullable text
Restituisce un valore di testo composto dal testo di input text
ripetuto per count
volte.
Ripetere il testo "a" cinque volte.
Utilizzo
Text.Repeat("a", 5)
Output
"aaaaa"
Ripetere il testo "helloworld" tre volte.
Utilizzo
Text.Repeat("helloworld.", 3)
Output
"helloworld.helloworld.helloworld."