in reply to foreach and arrays
In most texts on Perl you will see some reference to the fact that keys will return the keys to the hash but "not in any definite order."foreach my $key (keys %hashname) { ..... }
I think this is what you were half remembering.
Claude
|
|---|