Skip to content
Advertisement

JSON get key path in nested dictionary

JavaScript

Here is my json string, which keeps on changing frquently so the keys position within the dictionary is not same everytime, i need to search for a key and print it corresponding value, Since the json string changes everytime I have written an recursive function(See below) to search for key in the new json string and print the value. However now the situation is we have same key multiple times with diff values, how can i get the complete path of the key so it would be easier to understand which key value it is, for example the result should be like this:

JavaScript

My code so far:

JavaScript

Advertisement

Answer

You could add a string parameter that keeps track of the current JSON path. Something like the following could work:

JavaScript

You would call it like this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement