Hi. Well #1 and #2 are completely equivalent. #1 is the long form. The second form is just syntactic sugar for #1.

Perl does not do implicit dereferencing. $r being a reference you need the arrow or $$r{3} (which I like better written like ${ $r }{3} if not writing a one-liner). Maybe you can reread 'perldoc perlref' where you'll find quite a few examples. In particular look for "deref".

I usually stick with the arrow everywhere, except where you can't (e.g slices don't play well the arrow as the context imposed on the RHS is scalar, but hey you can write your own slice function if you find it prettier).

hth, cheers --stephan

In reply to Re: $x{1}{2} versus $x{1}->{2} by sgt
in thread $x{1}{2} versus $x{1}->{2} by bcrowell2

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.