Combiner.CombineTextByPositions

構文

Combiner.CombineTextByPositions(positions as list, optional template as nullable text) as function

バージョン情報

指定した出力位置を使って、テキスト値のリストを 1 つのテキスト値に結合する関数を返します。

例 1

テキスト値のリストを、指定した位置の出力に配置して結合します。

使用方法

Combiner.CombineTextByPositions({0, 5, 10})({"abc", "def", "ghi"})

出力

"abc  def  ghi"