Combiner.CombineTextByPositions
ऐसा फ़ंक्शन लौटाता है जो निर्दिष्ट आउटपुट स्थितियों का उपयोग करके टेक्स्ट की सूची को संयोजित करता है.
Syntax
Combiner.CombineTextByPositions(
positions as list,
optional template as text
) as function
Remarks
ऐसा फ़ंक्शन लौटाता है जो निर्दिष्ट आउटपुट स्थितियों का उपयोग करके टेक्स्ट मानों की सूची को सिंगल टेक्स्ट मान में संयो जित करता है.
Examples
Example #1
टेक्स्ट मानों की सूची को निर्दिष्ट स्थितियों पर आउटपुट में रखकर संयोजित करें.
Combiner.CombineTextByPositions({0, 5, 10})({"abc", "def", "ghi"})
Result:
"abc def ghi"
Category
Combiner