I have a json file which contains records as below
"data": [{
"Country": "China",
"ShipCountry": "CN"
},
{
"Country": "Indonesia",
"ShipCountry": "ID"
},
{
"Country": "Argentina",
"ShipCountry": "AR"
}
]
I need to replace all the occurrences of value next to Country "Country": "China"
ie value China inside " " should be replaced with something else
Can someone help me figure out a regex to resolve this using the notepad ++