How can I get values from Json file?

Hi guys! I have Json file like this below


JObject(3)
{
 JProperty(1)
 {
   [https://~~~/odata/#metadata#Assets]
 },
 JProperty(1)
 {
   [1]
 },
  JProperty(1)
  {
      JArray(1)
     {
        JObject(5)
        {
          JProperty(1)
          {
            [AssetName]
          },
          JProperty(1)
          {
            [True]
          },
          JProperty(1)
          {
            [Global]
          },
          JProperty(1)
          {
            [Text]
          },
          JProperty(1)
          {
            [{
	       "First" : "a,b,c,d,e",
	       "Second" : "1,2,3,4",
             **"Third" : "a,1,b,2"**
            }]
          }
       }
      }
    }
}

and I want to get values “a,1,b,2” from “third”
But I have no idea how to do :disappointed_relieved:

please help!

1 Like

@m.choi - can you share the actual json text.