in reply to Re^4: Print hash except first value
in thread Print hash except first value

That's what my update does minus step 2. Just add
for my $n (@names) { print("$n, $hash{$n}\n"); }

%hash needs a better name. I don't know what the number represents, so I can't help.

Replies are listed 'Best First'.
Re^6: Print hash except first value
by joec_ (Scribe) on Dec 20, 2008 at 22:44 UTC
    thank you. that does exactly what i need.