Hello All,
I am just wondering if there is any inbuilt function or utility available in IRIS to clean up "null" elements from JSON e.g. I want to remove "null" elements from payload below before I do any processing with it.
{
recipients: [
{ "name":"Utsavi", "email":"utsavi@gmail.com"},
{ "name":"Utsavi 1", "email":"utsavi1@gmail.com"},
null, null
],
content:[null, {"title":"Test.pdf", "data":"ygwehfbnwfbhew"} ]
}
Thanks & Regards,