我如何访问该项目?
我正在使用 Data::Dumper。我的代码是:
use Data::Dumper;
blah, blah, blah.....
print Dumper \@data;
我的输出是:
$VAR1 = [
[
'Dave',
'Green',
'5',
],
[
'Bob',
'Yellow',
'4',
]
];
如何访问“Bob”或“5”?另外,如何将 @data 转换为哈希或变量,以便将整个内容放入数据库中?
编辑: @data 是通过读取文件内容创建的:
while (<PARSE>) {
push @data, [unpack $template, $_]
}
I am using Data::Dumper. My code is:
use Data::Dumper;
blah, blah, blah.....
print Dumper \@data;
My output is:
$VAR1 = [
[
'Dave',
'Green',
'5',
],
[
'Bob',
'Yellow',
'4',
]
];
How do I access 'Bob' or '5'? Also, how can I turn @data into a hash or variable in order to put the entire contents into a database?
EDIT: @data is created from reading the contents of a file:
while (<PARSE>) {
push @data, [unpack $template, $_]
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@data
是一个数组的数组。哈希由一个键和一个对应的值组成。为了将数组转换为哈希,您必须将其中一个元素指定为键,其余元素指定为值。注意
替代语法:
$data[0]->[1]
相当于$data[0][1]
。请参阅
perldoc perldsc
- Perl 数据结构手册perldoc perlreftut
- Mark 关于参考文献的非常简短的教程致谢:
比尔·鲁珀特和乔尔。
@data
is an array of arrays. A hash consists of a key and a corresponding value. In order to convert the array into a hash, you have to assign one of the elements to be the key and the rest the value.Note
Alternative syntax:
$data[0]->[1]
is equivalent to$data[0][1]
.Refer
perldoc perldsc
- Perl Data Structures Cookbookperldoc perlreftut
- Mark's very short tutorial about referencesAcknowledgements:
Bill Ruppert and Joel.