Take a look at the -C argument for perl and the PERL_UNICODE environment
variable in http://perldoc.perl.org/perlrun.html
Examine the difference between
perl -E 'say "\x{df}"'
and
PERL_UNICODE=O perl -E 'say "\x{df}"'
That said, if you are working with the web, why in the world are you
sending
Chas. Owens schrieb:
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 te
Chas. Owens schrieb:
On Thu, Jul 28, 2016 at 10:55 AM Paul Johnson mailto:p...@pjcj.net>> 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 inters
Paul Johnson schrieb:
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, ":encod
I'm not sure if it is possible to use Umlaute in XML Files
or not. Maybe this post with help you:
http://stackoverflow.com/questions/11772468/reading-xml-files-with-umlaut-chars
Is there a way to change encoding to "iso-8859-1"?
Mike
On 7/28/2016 8:03 AM, beginners-digest-h...@perl.org wrot
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
11 matches
Mail list logo