Text.Repeat
Belirtilen sayıda yinelenen girdi metninden oluşan bir metin değerini döndürür.
Syntax
Text.Repeat(
text as text,
count as number
) as text
Remarks
count
kez yinelenen text
girdi metninden oluşan bir metin değerini döndürür.
Examples
Example #1
"a" metnini beş kez yineler.
Text.Repeat("a", 5)
Result:
"aaaaa"
Example #2
"helloworld" metnini üç kez yineler.
Text.Repeat("helloworld.", 3)
Result:
"helloworld.helloworld.helloworld."
Category
Text.Transformations