gpt4 book ai didi

Perl + Unicode : "Wide Strings" error

转载 作者:行者123 更新时间:2023-12-04 09:45:54 31 4
gpt4 key购买 nike

我在 Windows 7 上运行 Active Perl 5.14。
我正在尝试编写一个程序,该程序将读入转换表,然后处理文件并用其他模式替换某些模式 - 以上所有内容均采用 Unicode (UTF-8)。这是程序的开头:

#!/usr/local/bin/perl
# Load a conversion table from CONVTABLE to %ConvTable.
# Then find matches in a file and convert them.
use strict;
use warnings;
use Encode;
use 5.014;
use utf8;
use autodie;
use warnings qw< FATAL utf8 >;
use open qw< :std :utf8 >;
use charnames qw< :full >;
use feature qw< unicode_strings >;

my ($i,$j,$InputFile, $OutputFile,$word,$from,$to,$linetoprint);
my (@line, @lineout);
my %ConvTable; # Conversion hash
print 'Conversion table: opening file: E:\My Documents\Perl\Conversion table.txt'."\n";
my $sta= open (CONVTABLE, "<:encoding(utf8)", 'E:\My Documents\Perl\Conversion table.txt');
binmode STDOUT, ':utf8'; # output should be in UTF-8
# Load conversion hash
while (<CONVTABLE>) {
chomp;
print "$_\n"; # etc ...
# etc ...

事实证明,在这一点上,它说:
wide character in print at (eval 155)E:/Active Perl/lib/Perl5DB.pl:640]line 2, <CONVTABLE> line 1, etc...

这是为什么?我想我已经完成并实现了正确处理 Unicode 字符串、解码和编码为 UTF-8 的所有必要规定?
以及如何修复它?

TIA

海伦

最佳答案

Perl 调试器有自己的输出句柄,不同于 STDOUT (尽管它最终可能会与 STDOUT 到达同一个地方)。您还需要在脚本开头附近执行以下操作:

binmode $DB::OUT, ':utf8' if $DB::OUT;

关于Perl + Unicode : "Wide Strings" error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9299941/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com