in reply to not fetching correct records in xml output

for ( $xp->findnodes('/application_list/application/@id') ){ my $id = $_->string_value; $id =~ s/^\s+|\s+$//g; push @records, { appid => $id }; };
poj

Replies are listed 'Best First'.
Re^2: not fetching correct records in xml output
by snehit.ar (Beadle) on Jul 10, 2017 at 10:57 UTC
    Thanks for the inputs !!!