Hi there, I am not sure if this is the right place to ask, if not
please shoot me in the right direction :)
I'm trying to compile the Encode module, and it fails here during
testing:
t/enc_module.# Failed test (t/enc_module.t at line 58)
# got: 'ååå'
# expected: 'ååå
#
On December 28, 2002 at 20:51, Nick Ing-Simmons wrote:
> >BTW, in the t/fallbacks.t test case of Encode, 8-bit characters are
> >used for the ascii test, and entity references are generated for the
> >8-bit characters.
> >
> >As I stated in my original post, the problem is that t/fallbacks.t
> >te
Earl Hood <[EMAIL PROTECTED]> writes:
>> >ISO-8859-3 -> ISO-8859-8
>> > !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`
>> >
>abcdefghijklmnopqrstuvwxyz{|}~ÂÂÂÂÂÂ
ÂÂÂÂÂÂÂÂÂÂ
>> >
> Ħ˘Â£Â¤\xA5Ĥ§¨
>
>Look more close
On December 23, 2002 at 22:41, Nick Ing-Simmons wrote:
> >Prints out the following:
> >
> >1.83
> >
> >ASCII -> UTF8
> > !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`
> >abcdefghijklmnopqrstuvwxyz{|}~\x80\x81\x82\x83\x84\x85\x86\x87
> >\x88\x89\x8A\x8B\x8C\x
Earl Hood <[EMAIL PROTECTED]> writes:
>Take the following code snippet:
>
>use Encode q(:all);
>print $Encode::VERSION, "\n";
>
>my $org = '';
>for my $i (0x20..0xFF){
> $org .= chr($i);
>}
>my $src = $org;
>print "\nASCII -> UTF8\n";
>from_to($src, 'ascii', 'u
Take the following code snippet:
use Encode q(:all);
print $Encode::VERSION, "\n";
my $org = '';
for my $i (0x20..0xFF){
$org .= chr($i);
}
my $src = $org;
print "\nASCII -> UTF8\n";
from_to($src, 'ascii', 'utf8', FB_XMLCREF);
print $src, "\n";
Prints