Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^3: intermix list of items

by pg (Canon)
on Oct 10, 2004 at 17:30 UTC ( [id://398013]=note: print w/replies, xml ) Need Help??


in reply to Re^2: intermix list of items
in thread intermix list of items

"'gt' refers to the size of the string"

No. In your code, gt looks at "dictionary sequence".

If string size/length is what you wanted, say length($str) expliciltly.

use Data::Dumper; my @foo = ("abc", "bc"); print Dumper(sort bar1 @foo); print Dumper(sort bar2 @foo); sub bar1 { return $a gt $b; } sub bar2 { return length($a) gt length($b); }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-16 04:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found