Help for this page

Select Code to Download


  1. or download this
    my $twig = XML::Twig->new(
        twig_handlers   => { subfield => \&editHref, },
    ...
        $text =~ s/\Q$orig/(OSt)20/;
        $href->set_text($text);
    }
    
  2. or download this
    sub editHref {
        my ( $twig, $href ) = @_;
        my $text = $href->text();
        $href->set_text('(OSt)20') if $text eq '(OSt)16';
    }