in reply to Re^2: Confusion ,XML::SIMPLE with DATA:DUMPER
in thread Confusion ,XML::SIMPLE with DATA:DUMPER
update: it appears the problem is the ü character. Adding an xml prolog that indicates the correct encoding should fix it. Add something like this at the very beginning of the file:
<?xml version="1.0" encoding="ISO-8859-1"?>
Your encoding is probably iso-8859-1 (latin-1), CP1252 (latin windows encoding) or utf-8 (one of the unicode encodings)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Confusion ,XML::SIMPLE with DATA:DUMPER
by ultibuzz (Monk) on Nov 20, 2006 at 22:20 UTC | |
by Joost (Canon) on Nov 20, 2006 at 22:46 UTC |