다음을 통해 공유


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"