binmode(STDOUT,“:utf8”);草莓perl中的Unix和Unix行结尾

时间:2019-04-17 15:52:15

标签: perl newline

使用Windows 10上的Strawberry Perl v5.28.1,我试图获得与Linux上相同的结果-即获取UTF8编码的文件 Unix行结尾

这是我的Perl脚本:

#!perl -w

use strict;
use utf8;
use Encode qw(encode_utf8);
use Digest::MD5 qw(md5_hex);

binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");

my %words;

while(<>) {
        # change yo to ye
        tr/ёЁ/еЕ/;

        # extract russian word and its optional explanation
        next unless /^([А-Я]{2,})\|?([А-Я ,-]*)/i;
        my ($word, $expl) = (uc $1, $2);

        if (length($word) <= 3) {
                print $word;
                # if explanation is missing, omit the pipe
                print (length($expl) > 3 ? "|$expl\x0A" : "\x0A");
        } else {
                # print the md5 hash and omit the pipe and explanation
                print md5_hex(encode_utf8('my secret' . $word)) . "\x0A";
        }
}

这是我的输入文件:

ААК|Плоскодонное речное судно
ААРОНОВЕЦ|
ААРОНОВЩИНА|
ААТ|Драгоценный красный камень в Японии
АБА|Толстое и редкое белое сукно
АБАЖУР|
АБАЖУРОДЕРЖАТЕЛЬ|
АБАЗ|Грузинская серебряная монета
АБАЗА|

这是我的运行方式(我使用type而不是<,因为我的实际用例中有很多输入文件)

type input.txt | perl encode-words-ru.pl > output.txt

不管我在上面的Perl源代码中尝试什么,output.txt中的行都以\ x0D \ x0A终止

请帮助我阻止Perl“帮助”我!

1 个答案:

答案 0 :(得分:1)

也许有更好的方法,但是您可以将STDOUT设为:raw文件句柄,然后在此处自行编码输出。

binmode STDOUT;    # or  binmode STDOUT, ":raw";
...
print (length($expl) > 3 ? encode_utf8("|$expl\n") : "\n");   # $exp1 is already decoded
...
print md5_hex(encode_utf8('my secret' . $word)) . "\n";