Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
i have an issue like if we extract data from trestclient json values are coming like below:
{
"internalName": "MajorProcessLOPCTier1",
"investigationId": "[\"91fb0787c9b6aa6a3f2d\",\"b6491d52ebc9f16701db\"]",
"month": null,
"year": null,
"lastUpdatedAt": "08 Jul 2020 11:30:03 AM",
"locationId": null,
"referenceLastUpdatedAt": "[\"08 Jul 2020 11:30:03 AM\",\"24 Jun 2020 02:11:16 PM\"]",
"enterpriseId": null,
"incidentId": "[\"02a28d47-e9df627e67908312\",\"fa7a84d9-14b8f9ae0482e808\"]",
"value": "2.0"
},
so my requirement is to split multi array values in multi block
expected output :-
"investigationId": "[\"91fb0787c9b6aa6a3f2d\"]",
"referenceLastUpdatedAt": "[\"08 Jul 2020 11:30:03 AM\"]",
"incidentId": "[\
"02a28d47-e9df627e67908312
}
"investigationId": "["b6491d52ebc9f16701db\"]",
"referenceLastUpdatedAt": "[\"24 Jun 2020 02:11:16 PM\"]",
"incidentId": "["
fa7a84d9-14b8f9ae0482e808
Please help
Thanks