View Single Post
Author Message
RaZ_HU
Senior Member
Join Date: May 2015
Location: Hungary
Old 11-06-2018 , 11:07   Read JSON with dot notation in key
Reply With Quote #1

I'm new, I mean really NEW to JSON so I can't figure it out how can I get the values from keys under a dot notated "key"?

JSON file format:
Code:
{
	"text1": "result1",
	"XXX.XXX": {
			"text2": "result2"
	}
}
So I can retrieve text1 data (result1) with this:
Code:
json_object_get_string(object, "text1", data, charsmax(data)
But this won't work because dot notation in the key:
Code:
json_object_get_string(object, "XXX.XXX.text2", data, charsmax(data)
Can someone write a plugin that reads all of those and stores it to an array?

Last edited by RaZ_HU; 11-06-2018 at 16:33.
RaZ_HU is offline