Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Transliteration inside an XML file

by mirod (Canon)
on Jun 19, 2014 at 14:06 UTC ( [id://1090471]=note: print w/replies, xml ) Need Help??


in reply to Transliteration inside an XML file

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');

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1090471]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (6)
As of 2024-04-19 16:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found