Help for this page

Select Code to Download


  1. or download this
    C:\Documents and Settings\jnorton>ppm install Text::CSV
    Downloading ActiveState Package Repository packlist...not modified
    ...
    Generating HTML for Text-CSV-1.13...done
    Updating files in site area...done
       4 files installed
    
  2. or download this
    $colref = $csv->getline ($io);
    
  3. or download this
    use strict;
    use warnings;
    ...
    
    print "\n\nNumber of lines detected:\t$all_lines\n\n";
    print "\n\nNumber of matched lines detected:\t$matched_line_content\n\
    +n";
    
  4. or download this
    C:\>test
    Global symbol "$csv" requires explicit package name at C:\test.pl line
    + 21.
    ...
    Global symbol "$matched_line_content" requires explicit package name a
    +t C:\test.
    pl line 24.
    Execution of C:\test.pl aborted due to compilation errors.
    
  5. or download this
    $csv->eof or $csv->error_diag ();
    
  6. or download this
    aa,bb,cc,dd,ee,ff,gg,hh,CE,ii,jk,ll
    
  7. or download this
    use strict;
    use warnings;
    ...
    
    
    Number of matched lines detected:       1
    
  8. or download this
    $row->[8] =~ m/^CE$/ or next;