Solved

how to create a string from a collection

  • 7 January 2024
  • 2 replies
  • 76 views

Badge +1

I have a collection of strings and I want to make a sentence to make sense when sending an email. 

icon

Best answer by Garrett 7 January 2024, 14:35

View original

2 replies

Userlevel 6
Badge +16

Hi @ilyak 

Where are you stuck at and what have you tried?

 

  1. Are you able to use LOOPS to extract each item from the collection?
    Collection1 = [“one”, “two”, “three”, ”four”, “five”]
    tmpStr => get item from collection
  2. Are you able to concatenate strings and variables?
    Msg1 Msg1 tmpStr 

 

Then you should be able to create the following string Msg1.

one two three four five

 

Userlevel 6
Badge +22

Hi @ilyak,

The easiest way to achieve this solution is to use the Join items in collection action.

Reply