http://www.perlmonks.org?node_id=628090


in reply to Re: How to sort output?
in thread How to sort output?

It's a numeric sort so the spaceship (<=>) is appropriate rather than the string cmp operator. Consider how '2', '100' and '11' sort for example.


DWIM is Perl's answer to Gödel

Replies are listed 'Best First'.
Re^3: How to sort output?
by dguntner (Novice) on Jul 22, 2007 at 08:05 UTC
    Thanks, I've put that into play (with the suggested <=> replacement), and it seems to be working great!

    Thanks to everybody who responded!

    --Dave