in reply to Re^2: Help XML Search and replace
in thread Help XML Search and replace

It would be helpful if you tell us, what you like to modify.
This little peace of code show your data structure.
use Data::Dumper; my $d = XMLin( (join'', <DATA>), KeyAttr => 1, 'ForceArray' => [qw/subcategory product prod_id/] ); print Dumper($d);
Boris

Replies are listed 'Best First'.
Re^4: Help XML Search and replace
by Maxim (Sexton) on Sep 28, 2004 at 21:54 UTC
    I fix up the bug. I didn't put correctly the name of the arrays into my loop. What you give me really works. Thanks a lot Man ;).