如何在 Perl 中读取 ISO 8859-1 (Latin-1) 编码文本
所以我试图编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用
use Encoding
编译指示:它已损坏。要么在此处指定编码:
要么将其放在 open 本身中:
或者在打开后使用
binmode
:如果您使用
,则使用 open
可能是最简单的。不要忘记在输出流上设置编码。
Don’t use the
use encoding
pragma: it’s broken.Either specify the encoding here:
or put it in the open itself:
or
binmode
it after opening:If you’re using
<ARGV>
, thenuse open
is probably easiest.Don’t forget to set the encoding on your output streams, too.