Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: list slice

by imp (Priest)
on Jul 21, 2006 at 22:50 UTC ( [id://562971]=note: print w/replies, xml ) Need Help??


in reply to list slice

I've found that keeping your code as simple and easy to read as possible is generally the best policy. It makes maintenance and debugging easier, and is kinder to people who inherit your project.

Additionally, the simplistic code generally runs faster than the "clever" methods.

That said, have fun with abusing the language to satisfy curiosity :)

I recently wrote this as an experiment in getting localtime in yyyy-mm-dd format without declaring any local variables, and satifying strict.

This is what I came up with:
printf "%04s-%02s-%02s\n", map { @$a ? $_ + shift @$a : $_} (localtime +,$a=[1900,1])[5,4,3];
I'll break it into components to make it easier to digest.
(localtime,$a=[1900,1])
Create a list that contains the date tokens provided by localtime, and also contains the newly initialized $a. $a does not need to be declared, as $a and $b are exempted from strict due to their use in sort.

(localtime,$a=[1900,1])[5,4,3]
Take the above generated list, and extract indexes 5,4,3 (year,month,mday).
map { @$a ? $_ + shift @$a : $_ } (localtime,$a=[1900,1])[5,4,3];
Iterate over the list that was generated in the previous step. For each entry check if there are any values left in @$a. If yes, add the current value to the next value in @$a, and shift that item from the list.

In effect $a is a list of modifiers.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-19 15:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found