영어로 읽기

다음을 통해 공유


Text.Repeat

구문

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

정보

입력 count 텍스트 반복 횟수로 구성된 텍스트 text 값을 반환합니다.

예 1

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

사용법

Text.Repeat("a", 5)

출력

"aaaaa"

예제 2

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

사용법

Text.Repeat("helloworld.", 3)

출력

"helloworld.helloworld.helloworld."