Help for this page

Select Code to Download


  1. or download this
                while (my $line=<$txtfile>)
                {
                    foreach (@InputData_Unions)
    
  2. or download this
    if ($line =~/Sarnia Police Association|Sarnia Professional Fire Fighte
    +rs|.../) { # ...
    
  3. or download this
                while (my $line = <$txtfile>)
                {
                    next unless $line =~/Sarnia/;
                    foreach (@InputData_Unions) { # ...