On Thu, Jul 28, 2016 at 10:55 AM Paul Johnson wrote:
> On Thu, Jul 28, 2016 at 10:23:19AM -0400, Chas. Owens wrote:
snip
> > Also, this answer on StackOverflow by tchrist (Tom Christiansen, who I
> > would say knows the most about the intersection of Perl and Unicode)
> > is a good resource: h
On Thu, Jul 28, 2016 at 10:23:19AM -0400, Chas. Owens wrote:
> On Thu, Jul 28, 2016 at 10:05 AM, hw wrote:
> snip
> > So which character encoding on STDOUT does perl use by default? That should
> > be utf-8 without any further ado, shouldn´t it? When I add
> >
> >
> > binmode STDOUT, ":encoding(
On Thu, Jul 28, 2016 at 10:05 AM, hw wrote:
snip
> So which character encoding on STDOUT does perl use by default? That should
> be utf-8 without any further ado, shouldn´t it? When I add
>
>
> binmode STDOUT, ":encoding(utf-8)";
>
>
> the characters are displayed correctly in the terminal. Why
Chas. Owens schrieb:
Data::Dumper is dumping the internal format. To ensure compatibility, it is
using the \x{df} escape to represent LATIN SMALL LETTER SHARP S. To see it
rendered as a character, just print it:
Thanks! That kinda works:
#!/usr/bin/perl
use strict;
use warnings;
use fea
Data::Dumper is dumping the internal format. To ensure compatibility, it
is using the \x{df} escape to represent LATIN SMALL LETTER SHARP S. To see
it rendered as a character, just print it:
#!/usr/bin/perl
use strict;
use feature 'say';
use XML::Simple;
#warnings should come last to handle an
Hi,
I would like to read XML files which look like this:
uuid:ee1bd852-37ee-4965-a097-50130cf6dac7
Infostand
5449000134264
groß
5449000134264
5449000134264
10.0
20
There is an Umlaut, ß, supposed to be at
groß
which