You need to add the encoding used in the document at the start of it: <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>. The entities are then converted to the proper numerical entities.
You may also want to use mirod's XML::Twig, which, in the
latest version (3.0) is able to keep the original encoding. And besides this cool feature, I find Twig easier to use than DOM to process XML docs. Here's what your code would look like with Twig:
#!/usr/bin/perl -w
use strict;
use XML::Twig 3.0;
my $parser = new XML::Twig( keep_encoding => 1 );
my $xmlstring=<<"XMLEND";
<?xml version="1.0" encoding="ISO-8859-1"?>
<ACTION>
<INPUT LABEL="Radio Button"/>
<INPUT LABEL="été"/>
<RADIO ID="List">
éééàààùùù
</RADIO>
</ACTION>
XMLEND
$parser->parse($xmlstring);
$parser->print;
Hope this helps!
update: version 3.0 of XML::Twig can be found here
<kbd>--
my $ OeufMayo = new PerlMonger::Paris({http => ' paris.mongueurs.net'});</kbd>
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|