Splitting problems

Hey guys how do I split this? and can someone send me a page where I can learn thoroughly on Splitting? Thanks :slight_smile: I need to get this numbers only

[
{
“ID”: “1301”
}
{
“ID”: “1302”
}
{
“ID”: “1301”
}
]

Hi @anon78174196

For the simplest you can do this

image

After this you can apply for each loop on this string array.

Main.xaml (7.8 KB)

Thanks,
Prankur

omg thanks a lot man :smiley: That really helped me
Kudos

Hello @anon78174196,

Another possibility could be (If you can modify your input data adding a comma between each Id group) to use desereailize json array activity and then you only have to loop the result with for each activity.

[
{“ID”: “1301”},
{“ID”: “1302”},
{“ID”: “1301”},
]

image

Best Regards,
Susana

2 Likes

@Susana your suggestion is even better

1 Like

Yes your’s much easier
Thanks a lot