This is my json data and i wanted to remove the category with null value from my json.
I mean not to delete the "Category":"start"
but delete "Category":null
.
I have seen some answers regarding this but it deletes all the category including "Category":"start"
which I do not want.
"First": [{
"category": "Start",
"name": "Start",
"key": 1,
"lastname": "xyz"
}, {
"category": null,
"text": "Step",
"key": 2,
"lastname": "xyz"
}, {
"category": null,
"text": "Condition",
"key": 3,
"loc": "xyz"
}