I want to extract contents from large JSON files that appear to editors as one line (so I can't operate on a line basis), e.g.
{"license": 2, "file_name": "COCO_test2014_000000523573.jpg", "coco_url": "http://mscoco.org/images/523573", "height": 500, "width": 423, "date_captured": "2013-11-14 12:21:59", "id": 523573}, {"license . . .
For example, is there a way (sed, grep, ...?) I can search for the word 000000523573
and print the 100 characters preceding and 200 characters succeeding occurrences of the word?