How to call each value

I tried in my way but get whole values


Please help me out

@Arivu

arrayNames=Names.Split(","c)
For each

@Arivu
Initialize Array:
Use an “Assign” activity to create an array variable.
Example: names = {“john”, “uma”, “kian”}
For Each Loop:
Use a “For Each” activity to iterate through each item in the array.
Set the TypeArgument property toarray of String.
Set the Values property to your array (names).

The image shows a flowchart in an automation software where a list of names is assigned and then iterated through, displaying each name in a message box. (Captioned by AI)
check this file
Main.xaml (7.6 KB)

Hi @Arivu ,

While looping on string contains multiple comma separated values, provide the Names.Split(“,”) as iterative variable.
The currentItem(loop variable) will have values ‘mohan’, ‘Umesh’ and so on…

Hi @Arivu

In For each loop give Names.Split(",") in message box give currentItem

Regards,

Thank you for your suggestions

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.