With the other problems solved, let's look at the rules.

1. The _default => sub {$_[0] => $_[1]->{_content}}, is better written as _default => 'content',. There are several builtin rules so if that you need to do with a tag matches one of them, it's better to use the builtin instead of a custom rule.

2. If the rule for a tag matches the _default rule, you don't need the tag-specific rule.

3. The rule for the <updated> tag should be updated => sub {print "$_[1]->{_content}\n";},. You want to print the contents of the tag, not the value of its (nonexistent) attribute named "updated".

4. Once you need to work with more of the data you'll probably replace the rule for <updated> with the builtin rule "content" and specify a custom rule for the <entry> tag. In that rule all the contents of the child tags will be available in the $_[1] hashref as $_[1]->{childtagname}.

Jenda
Enoch was right!
Enjoy the last years of Rome.


In reply to Re: One more parsing ATOM question by Jenda
in thread One more parsing ATOM question by mcoblentz

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.