Dela via


Text.Repeat

Syntax

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

Om

Returnerar ett textvärde som består av indatatexten text upprepade count gånger.

Exempel 1

Upprepa texten "a" fem gånger.

Användning

Text.Repeat("a", 5)

Output

"aaaaa"

Exempel 2

Upprepa texten "helloworld" tre gånger.

Användning

Text.Repeat("helloworld.", 3)

Output

"helloworld.helloworld.helloworld."