需要一些写入 csv 文件的帮助
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自
Text::CSV
文档:因此,如果您执行以下操作:
...您应该获得以下形式的输出文件
From the
Text::CSV
docs:Thus, if you do something like:
...you should get an output file of the form
这将写入第五列。每个
,
都会转移到下一列。另请阅读此内容。That will write to the 5th column. Each
,
shifts to the next column. Also read this.