in reply to Re: How i can create hash of arrays of hashes from my 3 arrays?
in thread How i can create hash of arrays of hashes from my 3 arrays?
Thanks Bill This really helps but i will need to compare an array with User id details and then print the corrosponding Network details with recent login information and the counts the users attempts per Network . If user not logged in to a respective network then will use "Not Used" is that possible for you to help? I have included my effort on this function
@array4 900000001 900000002 900000007 900000009 900000010 900000011 900000012 500000008
foreach my $id (sort keys %hash) { foreach my $network(keys %{ $hash{$id} }) { foreach (0..$#array4) { if (exists $hash{$array4}{$network}) { print $hash5{$array4}; } else { print "Not Loggedin"; } } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How i can create hash of arrays of hashes from my 3 arrays?
by BillKSmith (Monsignor) on Mar 14, 2021 at 23:47 UTC | |
by chandantul (Scribe) on Mar 15, 2021 at 01:23 UTC | |
by BillKSmith (Monsignor) on Mar 16, 2021 at 13:51 UTC | |
by AnomalousMonk (Archbishop) on Mar 15, 2021 at 02:21 UTC | |
by chandantul (Scribe) on Mar 15, 2021 at 14:24 UTC |