Help for this page

Select Code to Download


  1. or download this
    while (my $line = <INFILE>) {
       my ($date, $description, $amount) = split /\t/, $line;
    ...
          # Amount not found...
       }
    }
    
  2. or download this
    while (my $line = <INFILE>) {
       if ($line =~ /(-?\$\d*\.\d*)/) {
    ...
          # Amount not found...
       }
    }