gpt4 book ai didi

regex - 字符名称,替换和Umlaut “Ü”:格式错误的UTF-8字符

转载 作者:行者123 更新时间:2023-12-02 04:07:54 27 4
gpt4 key购买 nike

我正在处理使用控制字符进行文本分隔的书目记录。当我在替代操作中使用Unicode字符名称“STRING TERMINATOR”时,如果文本包含“Ü”,则会收到“格式错误的UTF-8字符”警告。替换可与其他Unicode字符名称和包含“ü”,“ä”,“é”,...的文本一起使用。

#!/usr/bin/perl

use v5.12;

use utf8;
use strict;
use autodie;
use warnings;
# use warnings qw< FATAL utf8 >;
use charnames qw< :full >;
use feature qw< unicode_strings >;

binmode STDOUT, ':utf8';

my @records = (qq[\N{U+0098}L'\N{U+009c} Année du Figaro], qq[\N{U+0098}The\N{U+009c} famous ümläut], qq[\N{U+0098}The\N{U+009c} famous Ümlaut], qq[\N{U+0098}\N{U+00DC}\N{U+009c}]);

my %replace = (
"\N{START OF STRING}" => "<ns>",
"\N{STRING TERMINATOR}" => "</ns>",
);
my $regex = join "|", keys %replace;
$regex = qr/$regex/;

foreach my $record (@records){
$record =~ s/($regex)/$replace{$1}/g;
say $record;
};

我使用Strawberry Perl v5.12.3.0。

如何避免这些警告?

谢谢,jorol

最佳答案

升级到5.14,it won't throw warnings there

关于regex - 字符名称,替换和Umlaut “Ü”:格式错误的UTF-8字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6676699/

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