Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Sort - can't

by QM (Parson)
on Aug 29, 2005 at 00:10 UTC ( [id://487303]=note: print w/replies, xml ) Need Help??


in reply to Sort - can't

Make that
chdir("$contentdir") or die "Couldn't chdir ..., "; opendir THISDIR, '.' or die "Couldn't opendir ..., "; my @submenu = readdir THISDIR or die "Nothing to readdir, "; close THISDIR; # really need a die here too :)
Then you got lost. You tried this:
($sub1, $sub2, $sub3) = split (/\_/, $_,3);
Except that $_ wasn't set by anything yet. Your directories are in @submenu, and split only works on one scalar (at a time).

Moreover, sort is redundant on scalars:

$sub3 = sort { $b <=> $a } $sub3;

Somehow you need to pick which of the @submenu entries you want to split (or perhaps all?), and then what it is you're sorting...

-QM
--
Quantum Mechanics: The dreams stuff is made of

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-26 08:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found