It looks like the code below would work with XML::Twig, provided you have the complete translation table. It's a bit hard to test it when the data you provided did not include any of the translitatration in the piece of %trans</%> that's included.

#!/usr/bin/perl use strict; use warnings; use XML::Twig; my %trans = ( "t'i" =>'&#1090;&#1080;', "t'a" =>'&#1090;&#1103;', "t'u" =>'&#1090;&#1102;', "t'e" =>'&#1090;&#1077;', #It continues like this for several hundred lines, this is just a snip +pet. So it just goes through all character combinations and turns the + text to cyrillic. ); # Actual Translation Logic: my @signs = sort {length($b) <=> length($a)} keys %trans; @signs = map quotemeta($_), @signs; my $re = join '|', @signs, '.'; XML::Twig->new( twig_roots => { q{TIER[@LINGUISTIC_TYPE_REF='orthT' and @PARENT_REF='ref@S1' an +d @PARTICIPANT='S1' and @TIER_ID='orth@S1']/ANNOTATION/REF_ANNOTATION +/ANNOTATION_VALUE} => sub { my $in= $_->text; #warn "called text: ", $_->text, +"\n"; $in=~ s/($re)/exists($trans{$1}) ? $trans{$1} : $1/ +geo; $_->set_text( $in); $_->print; }, }, twig_print_outside_roots => 1, ) ->parsefile( 'in.xml');

In reply to Re: Transliteration inside an XML file by mirod
in thread Transliteration inside an XML file by nikop

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.