in reply to Re^2: How to read Array
in thread How to read Array
By the looks of it, you want to print out all of the dns_record entries that exist within array refs for each record type (A, NS, CNAME), and then put the resulting data back into JSON form, essentially transforming one JSON response to a different format, right?
You should have the information to start coding. Here's a basic outline: Feed your new input into my earlier example, uncomment the dump line, take a look at the result, and use that to figure out the reference path you need to get at the desired records. Once you have that, build a new ARRAY ref and push each (group of) dns_record you obtain. Finally, feed that ARRAY ref into JSON's encode_json (utf8) or to_json (no deliberate encoding), and you'll have your required output.
Then I'd recommend you gather as much diverse real-world input as you can, and create a suite of unit tests with Test::More, as systems integration work is fundamentally a little imprecise; robust solutions are especially important here.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to read Array
by sunilgame (Initiate) on Jul 09, 2013 at 10:45 UTC | |
by hdb (Monsignor) on Jul 09, 2013 at 13:57 UTC | |
by sunilgame (Initiate) on Jul 15, 2013 at 07:41 UTC | |
by hdb (Monsignor) on Jul 15, 2013 at 07:55 UTC | |
by sunilgame (Initiate) on Jul 15, 2013 at 08:33 UTC | |
| |
by Anonymous Monk on Jul 09, 2013 at 10:52 UTC |