My question deals with the following JSON data :
{"matches":[
{
"country":"USA",
"postcode":"9011"
},
{
"country":"USA",
"postcode":"9010"
},
{
"country":"UK",
"postcode":"BB3"
}
]}
Could anyone tell me how to retrieve the amount of times where country = USA ?
In the current case, the desired output is : 2.
I have been searching for hours how to do this, but have been unable to find the solution.
Thanks in advance for your help.
Regards,