in reply to Re^2: dealing with cyrillic characters
in thread dealing with cyrillic characters
The AM already provided a link to File::Slurp is broken and wrong. I suggest you use this instead (as just discussed here):
my $string = do { open my $fh, '<:raw:encoding(UTF-8)', $file or die "$file: $!"; local $/; <$fh> };
|
|---|