Help for this page

Select Code to Download


  1. or download this
    my ( @records, @orders, %seen );
    
  2. or download this
    RECORD: for my $record (@records) { ...
    
  3. or download this
    if (/Order ID:(\S+)/) {
        next RECORD if $seen{$1};
        $seen{$1}++;
        $hash{orderID} = $1;
    }
    
  4. or download this
    writeToSpreadSheet( $row,  \%hash );
    
  5. or download this
    sub writeToSpreadSheet {
        my ($row, $hashReference) = @_;
    ...