Text.Repeat
Syntaxe
Text.Repeat(text as nullable text, count as number) as nullable text
À propos
Retourne une valeur de texte composée du texte d’entrée text
répété count
fois.
Exemple 1
Répète le texte « a » cinq fois.
Utilisation
Text.Repeat("a", 5)
Sortie
"aaaaa"
Exemple 2
Répète le texte « helloworld » trois fois.
Utilisation
Text.Repeat("helloworld.", 3)
Sortie
"helloworld.helloworld.helloworld."