I have use case need to write concatenated string to text file
Concatenated string will be formed using
constants+variable+constants+variable
Write Text File activity - accepts only String value / only one constant/variable value in Text field … how to pass above combination values?
if excel sheet - cell has multiple values with coma separator , how to access each value and assign it to variable?
Using Split Text activity - able to split first string and remaining string … how to assign this string to variable and access it later in the process ?
You can use a for each activity and pass the array string as list of items…then inside loop you can use currentitem to get each item for each iteration
If not if you want access separately …you can check the array size by arr.count and depending on count you can decide how many items are there