Esteemed Monks,
I am a big fan of this data structure, but I am ashamed to admit I am not even sure what it is called. I know it is some form of hash (obviously), but I have been pouring over the perldocs, especially perldsc, to try and finally figure out it's name, but I have finally admitted defeat. It appears to be a simple hash, but the key linking it to {$ip} is what is confusing me.
I would also like to know if it is possible to add a new key/value pair to the existing hash without having to create a new one, which is what I did to get the results I was after.
This is my existing data structure:
$hashIPs{$ip} = {
totalVulns => $ipTotalVulns,
vulns => $vulns
};
and later in my code, I would like to add:
region => $region
I was able to accomplish what I wanted with the following, but for curiosity's sake, I would like to know if I could have avoided having to create the 2nd hash.
my $hashIPs{$ip} = {
totalVulns => $ipTotalVulns,
vulns => $vulns
};
my $hashrefIPs = \%hashIPs;
my $hashIPsNew{$ip} = {
region => $region,
totalVulns => ${$hashrefIPs}{$ip}{totalVulns},
vulns => ${$hashrefIPs}{$ip}{vulns}
};
for my $ip (keys %hashIPsNew){
print "$ip -- $hashIPsNew{$ip}{region} -- $hashIPsNew{$ip}{totalVulns}
+ -- $hashIPsNew{$ip}{vulns}\n";
}
Thanks,
Dru
Perl, the Leatherman of Programming languages. -
qazwart
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.