Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: padding/substr quirk

by pg (Canon)
on Jan 11, 2004 at 00:19 UTC ( [id://320398]=note: print w/replies, xml ) Need Help??


in reply to padding/substr quirk

You already got your immediate answer from Corion and Zed_lopez.

Next time, if a similar problem rises, or you need to find out the precedence or associativity of operators, where can you find the answer?

perlop

With the help of perlop, next time it is your turn to help others ;-)

Replies are listed 'Best First'.
Re: Re: padding/substr quirk
by ysth (Canon) on Jan 11, 2004 at 06:52 UTC
    Or feed it to B::Deparse:
    $ perl -MO=Deparse,-p #!perl use strict;use warnings; use Time::localtime; print "substr month= " . (substr("0" . localtime->mon() + 1, -2)) . "\ +n"; print "substr day= " . (substr("0" . localtime->mday(), -2)) . "\n"; print "sprintf month= " . (sprintf "%02d", localtime->mon() + 1) . "\n +"; print "sprintf day= " . (sprintf "%02d", localtime->mday()) . "\n"; ^D
    which gives:
    use Time::localtime; BEGIN {${^WARNING_BITS} = "UUUUUUUUUUUU"} use strict 'refs'; print((('substr month= ' . substr((('0' . localtime()->mon) + 1), (-2) +)) . "\n") ); print((('substr day= ' . substr(('0' . localtime()->mday), (-2))) . "\ +n")); print((('sprintf month= ' . sprintf('%02d', (localtime()->mon + 1))) . + "\n")); print((('sprintf day= ' . sprintf('%02d', localtime()->mday)) . "\n")) +;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-25 13:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found