This could very obviously be done with loops, but I'd like to know if there's a way in Perl to avoid that. My first attempt was this:

@interestingThings = ($root[2][0..3][3]); # Should print an array of interesting scalar values. print Dumper(\@interestingThings);

For those who understand a bit of CSS, I basically want to do something like #aUniqueElement p .anotherElement:;, where I describe sets of elements with a selector the describes their place in the DOM.

But if you're not familiar with CSS, here's a more detailed description of my problem:

Suppose I have a complex tree structure, comprised of arrays and hashes and references to tie them together. The structure has this property:

For any subtree rooted at N, any subtree rooted at X, such that X is a sibling of N, has the same shape as N.

This property means that we could talk about sets of nodes or subtrees by describing patterns of paths to them. For example, we could describe the set of nodes that are the third child of any of the children of the second child of the root. Or, succinctly: Tree->2nd Child->Nth Child->3rd Child, where N is in the range of Tree->2nd Child.

I want to collect such a set, though I'm actually interested in the values of nodes I'm describing.

Thanks very much!


In reply to How I can collect values out of complex tree structure that are located at chained keys matching a pattern? Without using a loop, that is. by Anonymous Monk

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.