共用方式為


Combiner.CombineTextByPositions

語法

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

關於

傳回函式,其使用指定的輸出位置,將文字值清單合併成單一文字值。

範例 1

將文字值清單放在指定位置的輸出中,以合併文字值清單。

使用方式

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

輸出

"abc  def  ghi"