다음을 통해 공유


Text.Repeat

통사론

Text.Repeat(text as nullable text, count as number) as nullable text

소개

입력된 텍스트 text을(를) count번 반복하여 구성된 텍스트 값을 반환합니다.

예제 1

텍스트 "a"를 다섯 번 반복합니다.

사용량

Text.Repeat("a", 5)

출력

"aaaaa"

예제 2

"helloworld" 텍스트를 세 번 반복합니다.

사용량

Text.Repeat("helloworld.", 3)

출력

"helloworld.helloworld.helloworld."