in reply to Where am I going wrong with printing flatfile db records in alphabetical order?
You need to sort the whole @list and then loop through to print if that's what you're after. Since you are sorting by the first field anyway, why bother with the 8 character restriction? I'd think that just adding @list = sort @list; before your printing loop should do what you want.
--
I'd like to be able to assign to an luser
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Where am I going wrong ?
by caciqueman (Novice) on Oct 29, 2001 at 22:31 UTC | |
by dmmiller2k (Chaplain) on Oct 30, 2001 at 01:51 UTC |