Text.Repeat
Syntax
Text.Repeat(text as nullable text, count as number) as nullable text
Info
Gibt einen Textwert zurück, der count
Wiederholungen des Eingabetexts text
enthält
Beispiel 1
Wiederholt den Text „a“ fünfmal
Verwendung
Text.Repeat("a", 5)
Ausgabe
"aaaaa"
Beispiel 2
Der Text „helloworld“ wird dreimal wiederholt.
Verwendung
Text.Repeat("helloworld.", 3)
Ausgabe
"helloworld.helloworld.helloworld."