You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a requirement where I have to search through a raw unstructure non-standard json file and provide all the possible paths which contains a given value.
For above json and for a given value "IAMHERE" , I would want to get [ "a.a1[2].a2" , "b", "c.c1.c2.c3.c5"] or something similar as those are the paths which has that value.
Also, the structure of the json is not known before hand.
The text was updated successfully, but these errors were encountered:
Problem Statement
I have a requirement where I have to search through a raw unstructure non-standard json file and provide all the possible paths which contains a given value.
Example
For a given json
For above json and for a given value "IAMHERE" , I would want to get
[ "a.a1[2].a2" , "b", "c.c1.c2.c3.c5"]
or something similar as those are the paths which has that value.Also, the structure of the json is not known before hand.
The text was updated successfully, but these errors were encountered: