I have some json file from url which I want to format. Problem is there i dont know how to get only titles of this objects. I think it should looks like: 1. Get JSON 2. Create an array which include only titles "C-402-621, C-393-643, C-389-643..." from this json.
Here is JSON
{  
   "data":{  
      "C-402-621":[  
         23944,
         21469,
         10160,
         "abc",
         0,
         0,
         ""
      ],
      "C-393-643":[  
         31424,
         21469,
         10160,
         "def",
         0,
         0,
         ""
      ],
      "C-389-643":[  
         31713,
         21469,
         10160,
         "gfd",
         0,
         0,
         ""
      ],
... and it goes like this 100+ times till end.For example I want result looks like:
"402|621 393|643 389|643 ..." 
     
     
    