作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是另一件奇怪的事情。我有这段代码和一个文件。
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/
我现在有这 2 个文件,任何时候我想编译都会收到错误 string does not name a type 在 Bestellung.h 与 std::string name; 的行上。 为什么?
我是一名优秀的程序员,十分优秀!