需要一些写入 csv 文件的帮助

发布于 2024-10-11 18:37:54 字数 149 浏览 2 评论 0原文

我是 Perl 新手,在对单行进行一些操作后,我需要一些帮助将输出写入 csv 文件的最后一列。我在 perl 中使用 Text::CSV_XS 模块。我知道写入 csv 文件的语句是 print FH "sitepoint, 2, 7\n" ;但是如何写入特定列(例如第 5 列)?

I am new to perl I need some help to write my output to the last column of the csv file after some operations on a single row. I am using Text::CSV_XS module in perl. I know the statement to write to a csv file is print FH "sitepoint, 2, 7\n" ; But how to write to a specific column like 5th column ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

塔塔猫 2024-10-18 18:37:54

来自 Text::CSV 文档

在设置 always_quote 的情况下写入 CSV 文件时,未加引号的空字段是未定义值的结果。

因此,如果您执行以下操作:

my @arr = ( undef, undef, undef, undef, "5th column" );
my $csv = Text::CSV->new ( { always_quote => 1 } );
open my $fh, '>', 'outfile.csv' or die $!;
$csv->print( $fh, \@arr );

...您应该获得以下形式的输出文件

,,,,5th column

From the Text::CSV docs:

When writing CSV files with always_quote set, the unquoted empty field is the result of an undefined value.

Thus, if you do something like:

my @arr = ( undef, undef, undef, undef, "5th column" );
my $csv = Text::CSV->new ( { always_quote => 1 } );
open my $fh, '>', 'outfile.csv' or die $!;
$csv->print( $fh, \@arr );

...you should get an output file of the form

,,,,5th column
jJeQQOZ5 2024-10-18 18:37:54
print ",,,,5th column\n";

这将写入第五列。每个 , 都会转移到下一列。另请阅读此内容

print ",,,,5th column\n";

That will write to the 5th column. Each , shifts to the next column. Also read this.

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