Help for this page

Select Code to Download


  1. or download this
    01 Joe
    02 Ed
    03 Sam
    04 Wendy
    
  2. or download this
    yadda 01 abc
    yadda 03 sss
    ...
    yadda 02 azdfbc
    yadda 04 azdfbc
    yadda 04 abdc
    
  3. or download this
    foreach (@transactions) { #there are dozens of employee numbers…
        if ($_ eq 01) {     push (@joe , $_) ; }
    ...
        if ($_ eq 04) {     push (@sam , $_) ; }
        if (no others) {     push (@unregistered , $_) ; }
    }
    
  4. or download this
    foreach (@transactions) {
        push (@the_correct_employee’s_array_based_on_number , $_) ;
    }