
Announcements
How would I convert
[
{
"name": "bob"
},
{
"name": "jane"
},
{
"name": "mary"
}
]
into
"bob, jane, mary"
Without using a foreach loop? Foreach seems like a very expensive operation for this.
Hi @ryanh1,
I afraid that For each loop is the only option we could choose in Flow, steps and expression as below:
item()['name']join(variables('Names'),',')
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.