in reply to Re: sorting inside specificin thread sorting inside specific
Take a look at push.
@array = (@array,$_); # copies the entire array every time [download]
push @array, $_; # does not copy the entire array every time [download]