Text.Repeat
Retourne une valeur de texte composée du texte d'entrée répété un nombre spécifié de fois.
Syntax
Text.Repeat(
text as text,
count as number
) as text
Remarks
Retourne une valeur de texte composée du texte d'entrée text
répété count
fois.
Examples
Example #1
Répète le texte " a " cinq fois.
Text.Repeat("a", 5)
Result:
"aaaaa"
Example #2
Répète le texte " helloworld " trois fois.
Text.Repeat("helloworld.", 3)
Result:
"helloworld.helloworld.helloworld."
Category
Text.Transformations