[EMAIL PROTECTED] wrote:
>
> Thank you. That fixed the original question. What if I want a list of hashes
> so that I can move through the list in the order that the list was
> initialized with?
Then either make the list first (and somewhere else), or come up with a
way
to order the keys:
my @list = qw(first second third fourth);
my %hash = (first => { stuff }, second => { stuff}, fourth => { stuff },
third => { stuff } );
for my $key (@list)
{
my $hashRef = $hash{$key};
# do stuff...
}
--
Ned Konz
currently: Stanwood, WA
email: [EMAIL PROTECTED]
homepage: http://bike-nomad.com, Perl homepage:
http://bike-nomad.com/perl
---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
[EMAIL PROTECTED]
For non-automated Mailing List support, send email to
[EMAIL PROTECTED]