in reply to Programmatically Updating Code with PPI
#! /usr/bin/perl use strict; use warnings; use diagnostics -verbose; use PPI; my $perlcode = << "END_PERLCODE"; package My::L10N::en; use base 'My::L10N'; our %Lexicon = ( 'Some [_1] text' => 'Some [_1] text' 'The [_1] is in the [_2]' => 'The [_1] is in the [_2]' ); END_PERLCODE my $doc = PPI::Document->new(\$perlcode); my $lexicon = $doc->find(sub { $_[1]->content eq '%Lexicon' }); $lexicon = $lexicon->[0]; # returns an array ref, but in my case, ther +e's only ever one. my $newmsg = q['The [_1] is in the [_2]']; my $newtext = sprintf(' %s =>\\n %s,', $newmsg, $newmsg, $newmsg, $newmsg); my $insert_this = PPI::Document->new(\$newtext); $lexicon->insert_after($insert_this->tokens()); print $doc->serialize; 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Programmatically Updating Code with PPI
by Tanktalus (Canon) on Jan 04, 2010 at 22:40 UTC |