txt2xls:把文本转换成excle

http://sourceforge.net/projects/pyxlwriter/

 

pyXLWriter 是一个生成Excel兼容电子报表的Python类库,它是John McNamara's Perl Spreadsheet::WriteExcel 1.0 module的一部分,支持Python 2.1以上版本。

 

解压缩,在example文件夹中找到示例文件:tab2xls.py,查看代码前面的注释,然后运行:

 

tab2xls.py demo.txt target.xls

 

 

文本文件中的数据格式如下:

 

00010025 634352
00010026 619866

 

问题出现了,在把解析后的数据插入excel时,00010025前面的0被截掉了,也就是说,单元格默认把“00010025”作为“数字”处理了。

 

查询附带的API,http://search.cpan.org/src/JMCNAMARA/Spreadsheet-WriteExcel-0.42/WriteExcel/doc/WriteExcel.html#Creating_and_using_a_Format_obje

 

    $worksheet->write(0, 0, "One", $format);
    $worksheet->write_string(1, 0, "Two", $format);

write方法是tab2xls.py自带的:

worksheet.write([nrow, ncol], cell.strip())

 为了写入文本,改为

worksheet.write_string([nrow, ncol], cell.strip())

 就可以了。

你可能感兴趣的:(html,.net,python,Excel,perl)