Text.Repeat
Text.Repeat(text as nullable text, count as number) as nullable text
입력 count
텍스트 반복 횟수로 구성된 텍스트 text
값을 반환합니다.
텍스트 "a"를 다섯 번 반복합니다.
사용법
Text.Repeat("a", 5)
출력
"aaaaa"
"helloworld" 텍스트를 세 번 반복합니다.
사용법
Text.Repeat("helloworld.", 3)
출력
"helloworld.helloworld.helloworld."