Hello I'm using XML::Simple to read a latin1 (iso-8859-1) xml file and everything is great until it encounters some &#xxx style entities. Strings containing those entities seem to be double encoded or some other weirdness:
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?> <foo> <p>foo</p> <p>foo with an &#8211;</p> <p>some latin1 encoded chars: æøå ÆØÅ</p> <p>same, but this time whith an &#8211; .. æøå ÆØÅ</p> <p>same, but this thime with an &#8221; instead .. : æøå ÆØÅ</p> </foo>
Read by this script:
my $xmldata = XMLin( $ARGV[0], ForceArray=>1, KeyAttr=>{meta=>"name"} +, SuppressEmpty=>"") or die "Could not parse xml data: $!"; foreach my $f ( @{$xmldata->{'p'} } ) { print $f; print "\n"; } print Dumper($xmldata);
Produces:
./test2.pl foo.xml foo Wide character in print at ./test2.pl line 12. foo with an – some latin1 encoded chars: æøå ÆØÅ Wide character in print at ./test2.pl line 12. same, but this time whith an – .. æøå Ã&#134;Ã&#152;Ã&#133; Wide character in print at ./test2.pl line 12. same, but this thime with an ” instead .. : æøå Ã&#134;Ã&#152;Ã&#13 +3; $VAR1 = { 'p' => [ 'foo', "foo with an \x{2013}", 'some latin1 encoded chars: æøå ÆØÅ', "same, but this time whith an \x{2013} .. \x{c3}\x{ +a6}\x{c3}\x{b8}\x{c3}\x{a5} \x{c3}\x{86}\x{c3}\x{98}\x{c3}\x{85}", "same, but this thime with an \x{201d} instead .. : + \x{c3}\x{a6}\x{c3}\x{b8}\x{c3}\x{a5} \x{c3}\x{86}\x{c3}\x{98}\x{c3}\ +x{85}" ] };
Looks like its double encoded?
Any ideas?

Thanx

In reply to Entities confuse encoding in XML::Simple by gizzlon

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.