Help for this page

Select Code to Download


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