Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: lost in my data structure.

by GrandFather (Saint)
on Nov 15, 2005 at 03:55 UTC ( [id://508471]=note: print w/replies, xml ) Need Help??


in reply to lost in my data structure.

You might like to use strict; use warnings; with that and fix the syntax first. Note that because you are using hashes the order of the keys is not preserved unless you use tie magic. The following gets close to what you would like to see:

use strict; use warnings; my %host = ( 'ip1' => { 'tcp' => { '21' => { 'state' => 'open', 'service' => 'ftp', }, '80' => { 'state' => 'open', 'service' => 'web', } } }, 'ip2' => { 'tcp' => { '23' => { 'state' => 'open', 'service' => 'telnet', }, '80' => { 'state' => 'open', 'service' => 'web', } } } ); for (keys %host) { my %ip = %{$host{$_}{'tcp'}}; print "$_\n"; for my $port (keys %ip) { print " $port " . join ' ', map {$ip{$port}{$_}} keys %{$ip{$por +t}}; print "\n"; } }

prints:

ip1 21 ftp open 80 web open ip2 23 telnet open 80 web open

Perl is Huffman encoded by design.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://508471]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-26 02:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found