Hi All,
Can anyone explain why this fails on perl 5.8.3? I tried various utf8 tricks, but I can't get it to work...
Thanks.
Zak
Update: johnnywang++ and
borisz++. Write file out as utf8, but read in a file using XML::Simple's XMLin interface!
use XML::Simple qw(:strict);
use Encode;
# use open 'utf8'; # Can't get this to work - should open all files as
+ utf8...
use Data::Dumper;
my $val;
$val->{utfchar} = "\x{10a0}";
my $xml = XMLout($val,KeyAttr=>{item=>'name});
open (OUT,">out.xml");
print OUT $xml;
close OUT;
# Yes, I could use a different slurp funciton...
my $readin="";
open (IN,"<out.xml");
while (<IN>){
$readin = $readin . $_;
}
close IN;
my $result = XMLin($readin,KeyAttr=>{item=>'name'},ForceArray=>1);
if ($result->{utfchar} eq "\x{10a0}"){
print "Wohoo!\n";
}
else {
print "Doh!\n";
}
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.