Re: grabbing content from tree builder

2007-08-31 Thread Rob Dixon
Rob Dixon wrote: Hunter Barrington wrote: so i have the following code: foreach my $node (@tables){ my @rows = $node->look_down(_tag => 'tr'); foreach my $row (@rows){ #grabbing data from each row at this point my @part_cell = $row->splice_content(3, 1); #part number

Re: grabbing content from tree builder

2007-08-31 Thread Rob Dixon
Hunter Barrington wrote: so i have the following code: foreach my $node (@tables){ my @rows = $node->look_down(_tag => 'tr'); foreach my $row (@rows){ #grabbing data from each row at this point my @part_cell = $row->splice_content(3, 1); #part number my $cell = $part

Re: grabbing content from tree builder

2007-08-31 Thread Chas Owens
On 8/31/07, Hunter Barrington <[EMAIL PROTECTED]> wrote: > so i have the following code: > > foreach my $node (@tables){ > my @rows = $node->look_down(_tag => 'tr'); > foreach my $row (@rows){ #grabbing data from each row at this point > my @part_cell = $row->splice_content(3,