I was wondering how I can access a part of the json
by looking through it and finding a name (hope the example makes more sense).
Name = 'kyle'
So I am trying to find kyle and all his information like his age.
{ "People": {
"Names": {
"kyle": [
{
"Age": "23",
"Filler": "23"
}
],
"Michel": [
{
"value": "New"
}
],
"Smith": [
{
"value": "New"
}
]
}
}
}
I later want to store this information into a variable. Any help will be much appreciated.