Help for this page

Select Code to Download


  1. or download this
    As it turns out, each line of the file represents one type
    of quote and the format and the format, while consistent for 
    each quote type, varies from type to type. In other words,
    one line may have five fields and the next line may have
    eight.
    
  2. or download this
    while(<DATA>)
    {
      chomp;
      my @line = split(',',$_);
    }
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    }
    
    exit;