Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^3: sort array by date

by BrowserUk (Patriarch)
on Jan 04, 2007 at 14:43 UTC ( [id://592954]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
     print for sort qw[ 12 a123 a122 A123 B123 Ab123 aB123 456 1A23 1a23 ]
    +;;
    12          ## ord('1') == 49, ord('2') == 50
    ...
    a122
    a123
    aB123
    
  2. or download this
    print for sort{ $b cmp $a } qw[ 1 10 100 2 20 21 3 300 ];;
    300
    ...
    100
    10
    1
    
  3. or download this
    print for sort{ $b <=> $a } qw[ 1 10 100 2 20 21 3 300 ];
    300
    ...
    3
    2
    1
    
  4. or download this
    print for sort{ 
        substr( $a, 1 ) <=> substr( $b, 1 ) 
    ...
    D222
    A473
    B659
    
  5. or download this
    ## Build an array of anonymous arrays, 
    ## each of which contains the sort field and the original element.
    ...
    print Dumper \@sorted;;
    
    $VAR1 = ['E001','C123','D222','A473','B659'];
    
  6. or download this
    @sorted = map{ 
        $_->[1] 
    ...
    
    print Dumper @sorted;;
    VAR1 = 'E001'; $VAR2 = 'C123'; $VAR3 = 'D222'; $VAR4 = 'A473'; $VAR5 =
    + 'B659';
    
  7. or download this
    print for map{ 
        $_->[2] 
    ...
    A473
    B659
    C659
    
  8. or download this
    print for map{ 
        ## Chop off the bit we added.
    ...
    D222
    A473
    B659
    
  9. or download this
    print for map{ 
        unpack 'x[N] A*', $_ 
    ...
    D222
    A473
    B659
    
  10. or download this
    print for map{ 
        unpack 'x[NA1]A*', $_ 
    ...
    A473
    B659
    C659
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://592954]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-16 04:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found