in reply to Re^2: foreach my $question (@perlmonks){}
in thread foreach loop not retrieving all data.
But that's not what the code says... Walk through it with me.
my @trips= $p->findnodes( '//table[@id="tblFYCXML_Itin"]'); # So there's exactly one table with that id. # So @trips contains now exactly one node, that node being that one ta +ble. # You still with me? # If not, try it: print "There is/are ", scalar(@trips), " nodes in \@trips.\n";
Okay. And then:
foreach my $trip (@trips){
You see it? Look at that line again. See it now? Look again until you do.
For each element of @trips, an array of which we just established that it has exactly one element, anyway, so for each element of that set of one element,, you want to do something. And you get a result like it runs the loop only exactly one time. Hmm, boggles the mind, don't it :)
If, at this point, you still really need another clue? Try finding those nodes that you want to loop over, and loop over them, instead of trying to loop over something that you know only occurs once.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: foreach my $question (@perlmonks){}
by marcoss (Novice) on Jun 19, 2012 at 10:54 UTC |