in reply to encode params in Template into array ref

Could you please post a little example reproducing the problem?

Cheers Rolf

(addicted to the Perl Programming Language and ☆☆☆☆ :)

  • Comment on Re: encode params in Template into array ref

Replies are listed 'Best First'.
Re^2: encode params in Template into array ref
by schetchik (Beadle) on Dec 09, 2014 at 23:01 UTC
    use strict; use v5.14; use utf8; use Template; my $value = "...."; #some unicode text with wide characters here my $template = Template->new(); my $result = [ ]; $template->process( "1.tt", { value => $value }, $result ); say @$result;
    And i got warning:
    Wide character in say at 1.pl line 17.