gpt4 book ai didi

perl - 在换行符周围分割刺痛时遇到问题

转载 作者:行者123 更新时间:2023-12-05 01:04:03 24 4
gpt4 key购买 nike

这是另一件奇怪的事情。我有这段代码和一个文件。

use strict;
use warnings;

my $file = "test.txt";
my @arr;

open (LOGFILE, $file);
while (my $line = <LOGFILE>)
{
#print $line;
@arr = split("\n", $line);
}
close LOGFILE;

print $arr[1];

test.txt 包含

\ntest1 \ntest2 \ntest3

这是我得到的错误:

Use of uninitialized value in print at test.pl line 15.

过去有没有人遇到过类似的问题?

最佳答案

split 采用正则表达式(我相信您的字符串被强制转换为正则表达式)。也许像 split(/\\n/, $line)?

 use strict;
use warnings;

my $file = "test.txt";
my @arr;

open (LOGFILE, $file);
while (my $line = <LOGFILE>)
{
print $line;
@arr = split(/\\n/, $line);
}
close LOGFILE;

print $arr[1];

关于perl - 在换行符周围分割刺痛时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4630032/

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