Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
           "  Currency: %s;  Amount: %s;  PaidOut: %s; Fees: %s;\n",
        $fDate, $fType, $fDetails,
        $fRef, $fCurrency, $fAmount, $fPaidOut, $fFees;
    
  2. or download this
    my $aoa = csv (in => \$line);
    
  3. or download this
    my $aoa = csv (in => $file);
    
  4. or download this
    foreach my $record (@$aoa) {
        my ($date, $type, $dtls, $ref, $curr, $amt, $paid, $fees) = @$reco
    +rd;
        ...;
        }