Help for this page

Select Code to Download


  1. or download this
     RECORD 1
     ######                  Full Name 1a
                             Street Address 1a
    ...
    0###                     Full Name 2b
     abcABCabc    99/99/9999 Street Address 2b
                             City 2b                       ST2b   Zip_2b  
    +              COUNTY 2b
    
  2. or download this
    if ($array[$line]  =~ /0?.*?(RECORD .*)/){
       $record  = trim($1); # works correctly
    ...
       $date    = trim($1); # when no date it's using the previous $1 that
    + goes into $id
       $address = trim($2); # when no date it's using the previous $2 that
    + goes into $name
       ... code continues ...