Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Print array of objects entire path

Good Day People

I have an array of objects and I need to print out the path of each node value and last print key and value for special (by name) node.

This is the array of objects or JSON

[{
    "Name": "2007",
    "Elements": [{
            "Name": "country1",
            "Elements": [{
                "House": "house1",
                "water": 1.8
            }],
            "Data": {}
        },
        {
            "Name": "country2",
            "Elements": [{
                "Name": "city2",
                "Elements": [{
                    "Name": "neighbourhood2",
                    "Elements": [{
                        "House": "house2",
                        "water": 2.8
                    }]
                }],
                "Data": {}

            }],
            "Data": {}
        },
        {
            "Name": "country3",
            "Elements": [{
                "House": "house2",
                "uni bill": 3.8
            }],
            "Data": {}
        }
    ],
    "Data": {}
}]

The output should be like this

2007 > country1 > house > water: 1.8
2007 > city2 > neighbourhood2 > house2 > electricity: 2.8
2007 > country3 > house > uni bill: 3.8

++++++++++++++ edited +++++++++++++++

function objectToPaths(data) {
    var validId = /^[a-z_$][a-z0-9_$]*$/i;
    var result = [];
   doIt(data, "");
    return result;

    function doIt(data, s) {
      if (data && typeof data === "object") {
       if (Array.isArray(data)) {
          for (var i = 0; i < data.length; i++) {
            doIt(data[i], s + "");
          }
        } else {
          for (var p in data) {
            if (validId.test(p)) {

              doIt(data[p], s + " > " + data[p]);
             } else {
              doIt(data[p], s + "");
           }
          }
        }
      } else {
        result.push(s);
      }
   }
 }

this is a rewrite of a function I found here but I did not get the expected result

+++++++++++++++++++++++ end of the edit +++++++++++++++++++++++

Please help

Thanks in advance

like image 615
rebh. a.m Avatar asked Feb 09 '26 19:02

rebh. a.m


1 Answers

What you are looking for is a Depth First Traversal function that recursively print properties:

function print(arr, path) {                              // print takes an array an an accumulated path from which it will start printing
  arr.forEach(function(obj) {                            // for each object obj in the array
    if(obj.Elements) {                                   // if the object obj has sub elements in it
      print(obj.Elements, path + " > " + obj.Name);      // then call print on those elements, providin the absolute path to this object
    } else {                                             // otherwise (it is a leaf)
      const bills = Object.keys(obj)
        .filter(key => key !== "House")
        .map(key => `${key}: ${obj[key]}`)
        .join(', ')
      console.log(path.slice(3) + " > " + obj.House + " > " + bills);    // print the accumulated path along with the House property of this object (removing the first 3 letters from path which are equal to " > ")
    }
  });
};

var arr = [{"Name":"2007","Elements":[{"Name":"country1","Elements":[{"House":"house1","water":1.8}],"Data":{}},{"Name":"country2","Elements":[{"Name":"city2","Elements":[{"Name":"neighbourhood2","Elements":[{"House":"house2","water":2.8}]}],"Data":{}}],"Data":{}},{"Name":"country3","Elements":[{"House":"house2","uni bill":3.8}],"Data":{}}],"Data":{}}];

print(arr, "");
like image 51
ibrahim mahrir Avatar answered Feb 12 '26 16:02

ibrahim mahrir