The
@ as a dereferencing operator (as you are
using it) expects a
reference, and thus puts its argument in scalar
context. The return value of
localtime in scalar context
is a scalar (a string, to be precise). You want localtime
to be called in list context.
What you're looking for is (localtime)[1,3].
This causes localtime to be called in list context, and then
takes elements 1 and 3 from the resultant list.
However, be extra careful with that syntax when using it with
print -- perl -e'print (localtime)[1,3]' won't
work because it's interpreted as calling print with the argument
localtime. Try either enclosing the whole slice in an extra
set of parens, or putting a `+' in front of the first paren.
The reason your last example works is that you're return
a single value from your subroutine, namely a reference to
an array. @{...} dereferences that array,
and then the slice grabs the elements you want from it. You
could fix your first subroutine example similarly to the
localtime fix.
Finally, and I know this is just an example, be
very careful about naming subroutines `m'. It can
cause some painful ambiguity with the m operator.
-dlc
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.