in reply to Help with Dumping data. Manipulate hashes output.
Is there a reason that instead of
you cannot just use the data structure directly?my $data= (Dumper $res->valueof('//listPhoneByNameResponse/return/phon +e'));
Why do the round trip through Data::Dumper and eval?my $data= [ $res->valueof('//listPhoneByNameResponse/return/phone') ];
Update: made results into arrayref, as it appears that is the intent of the original code.
--MidLifeXis
|
|---|