Text.Repeat

Syntaxe

Text.Repeat(text as nullable text, count as number) as nullable text

O uživateli

Vrátí textovou hodnotu složenou ze vstupního textu text opakovaných count časů.

Příklad 1

Opakujte text "a" pětkrát.

Využití

Text.Repeat("a", 5)

Výstup

"aaaaa"

Příklad 2

Třikrát zopakujte text "helloworld".

Využití

Text.Repeat("helloworld.", 3)

Výstup

"helloworld.helloworld.helloworld."