如何在 Perl 中读取 ISO 8859-1 (Latin-1) 编码文本

发布于 2024-10-02 22:13:11 字数 330 浏览 4 评论 0原文

所以我试图编写一个 perl 脚本来读取以 Latin-1 编码的文件。由于某种原因,这行不通。当我尝试对文件中我知道的字符(位于第一行)进行简单搜索时,什么也没有显示。我在下面使用使用编码“iso 8859-1”;,但我也尝试过binmode(STDIN, ":utf8");。关于我可能做错了什么以及如何改正有什么建议吗?

use encoding "iso 8859-1";

while(<>)
{
    if(/ó/gi)
    {
    print "Found one!\n";
    }
}

So I'm trying to write a perl script to read in a file encoded in Latin-1. For some reason, this just isn't working out. When I try to do a simple search for a character that I know is in the file (it's in the first line), nothing shows up. I'm using use encoding "iso 8859-1"; below, but I've also tried binmode(STDIN, ":utf8");. Any suggestions on what I might be doing wrong, and how to make it right?

use encoding "iso 8859-1";

while(<>)
{
    if(/ó/gi)
    {
    print "Found one!\n";
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森末i 2024-10-09 22:13:11

不要使用 use Encoding 编译指示:它已损坏。

要么在此处指定编码:

use open ":encoding(Latin1)";

要么将其放在 open 本身中:

open(FH, "< :encoding(Latin1)", $pathname)
   || die "can't open $pathname: $!";

或者在打开后使用 binmode

binmode(FH, ":encoding(Latin1)")
   || die "can't binmode to encoding Latin1";

如果您使用 ,则 使用 open 可能是最简单的。

不要忘记在输出流上设置编码。

Don’t use the use encoding pragma: it’s broken.

Either specify the encoding here:

use open ":encoding(Latin1)";

or put it in the open itself:

open(FH, "< :encoding(Latin1)", $pathname)
   || die "can't open $pathname: $!";

or binmode it after opening:

binmode(FH, ":encoding(Latin1)")
   || die "can't binmode to encoding Latin1";

If you’re using <ARGV>, then use open is probably easiest.

Don’t forget to set the encoding on your output streams, too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文