我如何访问该项目?

发布于 2024-10-17 06:30:52 字数 484 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

几味少女 2024-10-24 06:30:52
#!/usr/bin/env perl

use strict;
use warnings;

my @data = ( [ 'Dave', 'Green', '5', ], [ 'Bob', 'Yellow', '4', ] );
print $data[0]->[2], "\n";  # 5
print $data[1]->[0], "\n";  # Bob

@data 是一个数组的数组。哈希由一个键和一个对应的值组成。为了将数组转换为哈希,您必须将其中一个元素指定为键,其余元素指定为值。

注意

替代语法:

$data[0]->[1] 相当于 $data[0][1]

请参阅

致谢:

比尔·鲁珀特乔尔

#!/usr/bin/env perl

use strict;
use warnings;

my @data = ( [ 'Dave', 'Green', '5', ], [ 'Bob', 'Yellow', '4', ] );
print $data[0]->[2], "\n";  # 5
print $data[1]->[0], "\n";  # Bob

@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

Acknowledgements:

Bill Ruppert and Joel.

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