I have a json file that has alot of double quotes inside the values. The json file is almost 27000 records.
I want to remove or replace the double quotes inside the values because otherwise its not accepted as a good json file. How can i do that?
The problem is that there are records with one double quote inside the value but there are also records with multiple quotes inside them.
Instead of replacing or removing the quotes, it is also possible to remove the entire key and value. I am not gonna use it anyway. Is it any easier to do that?
Here is a sample of 1 record in the json file:
{
"adlibJSON": {
"recordList": {
"record": [
{
"@attributes": {
"priref": "4372",
"created": "2011-12-09T23:09:57",
"modification": "2012-08-11T17:07:51",
"selected": "False"
},
"acquisition.date": [
"1954"
],
"documentation.title": [
"A lot of text with a lot of extra double quotes like "this" and "this""
] ... ...
The problem lies in the value of the key: document.title
.
I have sublime text 2, which i use to find and replace.