Text.Repeat

構文

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

バージョン情報

count 回繰り返された入力テキスト text で構成されるテキスト値を返します。

例 1

テキスト "a" を 5 回繰り返します。

使用方法

Text.Repeat("a", 5)

出力

"aaaaa"

例 2

テキスト "helloworld" を 3 回繰り返します。

使用方法

Text.Repeat("helloworld.", 3)

出力

"helloworld.helloworld.helloworld."