I have a lot of different json files, and i want to extract some specific values from these json files.
Example, i have these 3 different files, json1, json2, json3.
for json1 i want do extract line:
105 “text”: “Områdeleder”,
196 “id”: “28b6f0d9-3d70-498d-b01e-5e7aac8693d8”,
197 “title”: “Administration”,
200 “customId”: “48”,
205 “managerId”: “13e4a594-363e-41cb-b227-7cdfed9d95ba”,
407 “id”: “13e4a594-363e-41cb-b227-7cdfed9d95ba”,
for json2 i want do extract line:
110 “text”: “Senior IT Arkitekt”,
440 “id”: “3afd5778-dca2-40a2-907a-0f96a2a8b716”,
441 “title”: “BI og Analyse”,",
444 “customId”: “47”,
449 “managerId”: “4f941a88-3a76-491d-a089-6bae8b2d4292”,
552 “id”: “4f941a88-3a76-491d-a089-6bae8b2d4292”,
for json3 i want do extract line:
228 “text”: “Chef Shared Service”,
163 “id”: “4a1de04c-a72e-4b67-8b4f-8dfda1ff7ac0”,
164 “title”: “IDS”,
167 “customId”: “9”,
172 “managerId”: “34842a53-5668-4048-bb14-5bda41bc5115”,
457 “id”: “34842a53-5668-4048-bb14-5bda41bc5115”,
is this possible, too loop each json array, and only get out what you need?
json2.json (18.2 KB)
json1.json (12.6 KB)
json3.txt (14.6 KB)