I have complex anonymous JSON string.
For example:
{ someData: { test1: { test2: { test4: "data" }, test3: "my text" } } }
And I need to find one property in this JSON.
So, for example, if JSON contains someData.test1.test3
property, then I need to use value of this property my text
.
Is there a simple way to do (handle any level of nesting) that?