I have utf8 characters in my code. So I do:
use utf8;
my $line = 'ЗГ. РАХ. №382 ВIД 03.02.2020Р';
print $line; # Wide character in print at ...
Then I thought that my STDOUT should be in utf8
:
use utf8;
use open IO => ':utf8 :std';
my $line = 'ЗГ. РАХ. №382 ВIД 03.02.2020Р';
print $line; # Wide character in print at ...
Why when I say perl to use utf8
while my source code has utf8
characters I get the error?
In same time:
No error:
my $line = 'ЗГ. РАХ. №382 ВIД 03.02.2020Р';
print $line;
No error:
use open IO => ':utf8 :std';
my $line = 'ЗГ. РАХ. №382 ВIД 03.02.2020Р';
print $line;
How I should open my filehandles and work correctly with utf8
?
UPD
Actually I have this code. It do not match:
use open IO => ':utf8 :std';
my $line = 'ЗГ. РАХ. №382 ВIД 03.02.2020Р';
my @match = $line =~ m/(вiд|от|від)/i;
print "$line -> $1 \n";
Unfortunately regex is not matched. The output is:
ЗГ. РАХ. №382 ВIД 03.02.2020Р ->
Then I add utf8
pragma:
use utf8;
use open IO => ':utf8 :std';
my $line = 'ЗГ. РАХ. №382 ВIД 03.02.2020Р';
my @match = $line =~ m/(вiд|от|від)/i;
print "$line -> $1 \n";
Now regex is matched, but warning is issued
Wide character in print at t2.pl line 17.
ЗГ. РАХ. №382 ВIД 03.02.2020Р -> ВIД