Text.Repeat
Text.Repeat(text as nullable text, count as number) as nullable text
Returnerar ett textvärde som består av indatatexten text
upprepade count
gånger.
Upprepa texten "a" fem gånger.
Användning
Text.Repeat("a", 5)
Output
"aaaaa"
Upprepa texten "helloworld" tre gånger.
Användning
Text.Repeat("helloworld.", 3)
Output
"helloworld.helloworld.helloworld."