Hello there,

On Wed, 25 Feb 2004, Matthew Darwin wrote:

> If I create a string using here syntax:
> my $string <<EOF;
> ...
> EOF
> print $string;
>
> And $string contains UTF-8 characters they get mangled somehow when they
> go through the output chain.
>
> However, if I build the same document using
>
> my $string;
> $string .= "..."
> print $string;
>
> Then everything is good.
>
> Thoughts?
>
> Linux Perl 5.8.1 (RedHat 9)

There have been troubles with UTF-8 on 5.8.1, especially with Red Hat
who had an interesting idea for the locale setting.

I'd suggest trying 5.8.3 to see if it's fixed.

73,
Ged.


-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Reply via email to