I think this is not a exact output what i am expecting.

#!/usr/bin/perl -- use strict; use warnings; use HTML::TreeBuilder::XPath; my $month; my $date; my $value; my $tree= HTML::TreeBuilder::XPath->new_from_content(<<'HTML'); <body> <div class="Row Jun-2015"> <div class="Cell month-year "> Jun-2015 </div> <div class="Cell Release Date "> 2015-07-30 </div> <div class="Cell National Mortgage Contract Rate "> 3.850 </div> </div> <div class="Row Jul-2015"> <div class="Cell month-year "> Jun-2015 </div> <div class="Cell Release Date "> 2015-08-31 </div> <div class="Cell National Mortgage Contract Rate "> 3.750 </div> </div> </body> HTML my @rows = $tree->findnodes(q{//div[@class =~ /Row Jun-2015/ ]}); print $#rows, "\n"; for my $row ( @rows ){ my @cells = $row->findnodes(q{ //div[ @class =~ /Cell/ ] }); print $#cells, "\n"; $date=$cells[1]->as_trimmed_text; $value=$cells[2]->as_trimmed_text; for my $cell ( @cells ){ print $cell->as_trimmed_text, "\t"; } print "Date: $date, value : $value\n"; }

output be like

0 5 Jun-2015 2015-07-30 3.850 Jun-2015 2015-08-31 3.750 + Date: 2015-07-30, value : 3.850

But the expected output is :

1 3 Jun-2015 2015-07-30 3.850 Date: 2015-07-30, value : 3.850 3 Jun-2015 2015-08-31 3.750 Date: 2015-08-31, value : 3.750

there is something wrong with this code please give a suggestion to find out issue.


In reply to Re^6: Nested div tag by perlmad
in thread Nested div tag by perlmad

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.