且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将.xls文件转换为.csv文件?

更新时间:2023-11-25 15:45:58

您有拼写错误:

open(my $FH ,'>',"$csv") or die "oops!";

使用严格和警告,并且在编译期间出现警告。

Use strict and warnings and you got warnings during compile time.

use strict;
use warnings;

您有拼写错误:

open(my $FH ,'>',$csv) or die "oops!";

while (my$line = <$FH>){

非常感谢,