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