in reply to Search and replace in portion of xml file
use XML::Rules; my $parser = XML::Rules->new( style => 'filter', rules => { article => sub { my ($tag,$attr) = @_; $attr->{_content} =~ s/EM/E/g; return $tag => $attr; } } ); $parser->filterfile( 'a.xml', 'b.xml');
Jenda
Enoch was right!
Enjoy the last years of Rome.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Search and replace in portion of xml file
by sandy1028 (Sexton) on Jun 02, 2009 at 09:27 UTC | |
by Jenda (Abbot) on Jun 02, 2009 at 10:58 UTC |