- or download this
open my $csvIn, '<', $fileName or die "Failed to open $fileName: $!";
- or download this
<$csvIn> for 1 .. 2;
while (defined (my $line = <$csvIn>)) {
- or download this
$line =~ tr/;,/ ./;
- or download this
#!/usr/bin/perl
use strict;
...
}
close $csvIn;