Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^9: XML:: DOM and Accented Characters

by almut (Canon)
on Aug 09, 2010 at 11:44 UTC ( [id://853783]=note: print w/replies, xml ) Need Help??


in reply to Re^8: XML:: DOM and Accented Characters
in thread XML:: DOM and Accented Characters

The idea was to not call ->printToFile (which you're doing in all five cases), but to use the suggested code instead:

#!/usr/bin/perl -w use XML::DOM; my $parser = new XML::DOM::Parser; my $doc = $parser->parsefile ("c:\\accentTest.xml"); open my $fh, ">:utf8", "c:\\accentTestOutPut.xml" or die $!; print $fh "\x{FEFF}"; # BOM $doc->print($fh); $doc->dispose;

Replies are listed 'Best First'.
Re^10: XML:: DOM and Accented Characters
by freeflyer (Novice) on Aug 09, 2010 at 12:24 UTC

    Looking back at your post I can't believe I misunderstood you. Been banging my head against the wall all weekend and the answer was there all along :)

    Thanks almut (and everyone else who has helped). It's been a learning experience in perl and reading posts properly ;)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (6)
As of 2024-03-28 22:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found