我需要将我的excel文件(.xls)转换为unix中的制表符分隔文本文件(.txt)。 任何人都可以帮助我。
例如。如果我在服务器上传File.xls,它应该转换为File.txt
感谢您的回复。
答案 0 :(得分:1)
这应该做你想要的:
#!/usr/bin/perl -w
use strict;
use Spreadsheet::ParseExcel;
my $parser = Spreadsheet::ParseExcel->new();
my $workbook = $parser->parse($ARGV[0]);
if ( !defined $workbook ) {
die $parser->error(), ".\n";
}
for my $worksheet ( $workbook->worksheets() ) {
my ( $row_min, $row_max ) = $worksheet->row_range();
my ( $col_min, $col_max ) = $worksheet->col_range();
for my $row ( $row_min .. $row_max ) {
my $line="";
my $comma="";
for my $col ( $col_min .. $col_max ) {
my $cell = $worksheet->get_cell( $row, $col );
next unless $cell;
$line .= $comma;
$line .= $cell->unformatted();
# Could be $cell->unformatted() or $cell->value()
$comma=",";
}
print $line,"\n";
}
}
将文件保存为xls2csv
,然后转到终端,并使用以下命令使其可执行:
chmod +x xls2csv
然后你可以用:
运行它./xls2csv file.xls > file.csv
如果您不知道如何安装电子表格模块,可以执行以下操作:
sudo perl -MCPAN -e shell
cpan> install Spreadsheet::ParseExcel
cpan> q