Text.Repeat
Restituisce un valore di testo composto dal testo di input ripetuto per il numero di volte specificato.
Syntax
Text.Repeat(
text as text,
count as number
) as text
Remarks
Restituisce un valore di testo composto dal testo di input text
ripetuto per count
volte.
Examples
Example #1
Ripetere il testo "a" cinque volte.
Text.Repeat("a", 5)
Result:
"aaaaa"
Example #2
Ripetere il testo "helloworld" tre volte.
Text.Repeat("helloworld.", 3)
Result:
"helloworld.helloworld.helloworld."
Category
Text.Transformations