Beefy Boxes and Bandwidth Generously Provided by pair Networks kudra
Syntactic Confectionery Delight
 
PerlMonks  

Sorting by numbers

by kidd (Curate)
on Aug 14, 2002 at 14:45 UTC ( [id://190188]=perlquestion: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.

kidd has asked for the wisdom of the Perl Monks concerning the following question:

I have a bunch of data which I display sorting it out by numbers:

9 8 7 ... 3 2 1

I thought it worked fine...until I got to number 10...which displays just before 1....

I thought of adding 0 before the one digit numbers...but maybe there is a better way to achieve this...

10 9 8 ... 3 2 1

Thanks

Replies are listed 'Best First'.
Re: Sorting by numbers
by the_slycer (Chaplain) on Aug 14, 2002 at 14:52 UTC
    Sounds like you are doing just a sort list
    What you need is sort { $a <=> $b }list See the perlfunc manpage for sort
Re: Sorting by numbers
by mp (Deacon) on Aug 14, 2002 at 14:52 UTC
    From: perldoc -f sort

    # sort numerically ascending @articles = sort {$a <=> $b} @files;
      or to get them in the order he posted in: @a = sort { $b <=> $a } @list; =)

      -Waswas

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://190188]
Approved by Courage
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.