I have a JSON file whit this structure. For every URL field, we have a RESULT field which contains hundreds of LINKS. Would it be somehow possible to parse it and obtain a (ie. csv) list which contains all the LINKS for every URL?
[{
"url": "https://example.org/yyy",
"result": "{\"links\":[{\"link\":\"https://example.org/xxx/xxx\",\"text\":\"\"
},
{
\"link\":\"https://example.org/xxx/xxx\",\"text\":\"\"
},
{
\"link\":\"https://example.org/xxx/xxx\",\"text\":\"yyy\"}[.......]
Thanks in advance