Hey guys how do I split this? and can someone send me a page where I can learn thoroughly on Splitting? Thanks I need to get this numbers only
[
{
“ID”: “1301”
}
{
“ID”: “1302”
}
{
“ID”: “1301”
}
]
Hey guys how do I split this? and can someone send me a page where I can learn thoroughly on Splitting? Thanks I need to get this numbers only
[
{
“ID”: “1301”
}
{
“ID”: “1302”
}
{
“ID”: “1301”
}
]
For the simplest you can do this
After this you can apply for each loop on this string array.
Main.xaml (7.8 KB)
Thanks,
Prankur
omg thanks a lot man 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”},
]
Best Regards,
Susana
@Susana your suggestion is even better
Yes your’s much easier
Thanks a lot