gpt4 book ai didi

perl - 使用 Text::CSV 从 CSV 中检索第一行作为标题

转载 作者:行者123 更新时间:2023-12-02 06:18:02 24 4
gpt4 key购买 nike

我觉得我遗漏了一些相当明显的东西,但在文档中找不到任何答案。对于使用 Perl 的 OOP 仍然是新手,但我正在使用 Text::CSV 来解析 CSV 供以后使用。

我将如何提取第一行并将值推送到数组@headers?

这是我目前所拥有的:

#!/usr/bin/perl
use warnings;
use diagnostics;
use strict;
use Fcntl ':flock';
use Text::CSV;

my $csv = Text::CSV->new({ sep_char => ',' });
my $file = "sample.csv";
my @headers; # Column names

open(my $data, '<:encoding(utf8)', $file) or die "Could not open '$file' $!\n";
while (my $line = <$data>) {
chomp $line;

if ($csv->parse($line)) {
my $r = 0; # Increment row counter
my $field_count = $csv->fields(); # Number of fields in row

# While data exists...
while (my $fields = $csv->getline( $data )) {
# Parse row into columns
print "Row ".$r.": \n";

# If row zero, process headers
if($r==0) {
# Add value to @columns array
push(@headers,$fields->[$c]);
} else {
# do stuff with records...
}
}
$r++
}
close $data;

您可能认为有一种方法可以引用第一行中的现有字段。

最佳答案

几乎直接来自 documentation ,例如。

#!/usr/bin/perl
use strict;
use warnings;
use Text::CSV_XS;

my $csv = Text::CSV_XS->new ({ binary => 1, eol => $/ });

my $file = 'o33.txt';
open my $io, "<", $file or die "$file: $!";

my $header = $csv->getline ($io);
print join("-", @$header), "\n\n";

while (my $row = $csv->getline ($io)) {
print join("-", @$row), "\n";
}

__END__
***contents of o33.txt
lastname,firstname,age,gender,phone
mcgee,bobby,27,M,555-555-5555
kincaid,marl,67,M,555-666-6666
hofhazards,duke,22,M,555-696-6969

打印:

lastname-firstname-age-gender-phone

mcgee-bobby-27-M-555-555-5555
kincaid-marl-67-M-555-666-6666
hofhazards-duke-22-M-555-696-6969

更新:考虑到您的问题,您可能想通过列名来寻址数据。为此,您可以使用一些东西(也来自文档),如下所示:

$csv->column_names ($csv->getline ($io));

while (my $href = $csv->getline_hr ($io)) {
print "lastname is: ", $href->{lastname},
" and gender is: ", $href->{gender}, "\n"
}

注意:您可以使用Text::CSV 代替Text::CSV_XS,因为前者是a wrapper。围绕后者。

关于perl - 使用 Text::CSV 从 CSV 中检索第一行作为标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20736334/

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