[dancer-users] character encoding

WK wanradt at gmail.com
Thu Dec 19 08:08:45 GMT 2013


2013/12/19 Attila Bárdi <attila.bardi at gmail.com>


> But I don't know the solution.
>

You must deal with decoding in your module, but in your script it should
work like this:

#!/usr/bin/perl
use strict;
use warnings;
use Encode;
binmode STDOUT, 'utf8';

my $somebody = LdapPerson->new();
$somebody = LdapPerson->search('attila.bardi at example.com');
print "displayname: " . decode('utf-8', $somebody->get_displayName() ) .
"\n"

In Dancer you must omit setting binmode on STDOUT, because Dancer sets it
itself.  Hope it gives  some hints how to deal with such problem.

-- 
Wbr,
Kõike hääd,

Gunnar
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.preshweb.co.uk/pipermail/dancer-users/attachments/20131219/9904bbc9/attachment.html>


More information about the dancer-users mailing list