Text.Repeat
Trả về một giá trị văn bản bao gồm văn bản đầu vào được lặp lại ở số lần được chỉ định.
Syntax
Text.Repeat(
text as text,
count as number
) as text
Remarks
Trả về một giá trị văn bản bao gồm văn bản đầu vào text
được lặp lại count
lần.
Examples
Example #1
Lặp lại văn bản "a" 5 lần.
Text.Repeat("a", 5)
Result:
"aaaaa"
Example #2
Lặp lại văn bản "helloworld" 3 lần.
Text.Repeat("helloworld.", 3)
Result:
"helloworld.helloworld.helloworld."
Category
Text.Transformations