Text.Repeat
इनपुट की निर्दिष्ट बार दोहराई गई पंक्तियों के साथ एक तालिका लौटाता है.
Syntax
Text.Repeat(
text as text,
count as number
) as text
Remarks
count
बार दोहराए गए इनपुट पाठ text
द्वारा संयोजित पाठ मान को लौटाता है.
Examples
Example #1
पाठ "a" को पाँच बार दोहराएँ.
Text.Repeat("a", 5)
Result:
"aaaaa"
Example #2
पाठ "helloworld" को तीन बार दोहराएँ.
Text.Repeat("helloworld.", 3)
Result:
"helloworld.helloworld.helloworld."
Category
Text.Transformations