Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: How can I sort this array?

by dws (Chancellor)
on Jun 17, 2002 at 17:32 UTC ( [id://175141]=note: print w/replies, xml ) Need Help??


in reply to How can I sort this array?

To get these to sort, you're going to need to extract/construct a key you can sort on. Since the files are named like   Order_29May11:05.bak You can extract some sortable pieces by doing
$name =~ s/_(\d\d)(...)(\d\d:\d\d)/; $key = $month{$2} . $1 . $3;
where %month is a hash that maps the 3 character month abbreviation to a to character numeric string (e.g., 'Jan' => '01', ... 'Dec' => '12').

You can use this within a Schwartzian transform (many examples of which can be found by doing a Super Search on "Schwartzian").

Replies are listed 'Best First'.
Re^2: How can I sort this array?
by particle (Vicar) on Jun 17, 2002 at 19:12 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (7)
As of 2024-04-19 08:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found