Help for this page

Select Code to Download


  1. or download this
       my @fld = split /\s*FIELD\w = /;
       shift @fld; # Zap empty first field
       print join(",",@fld ),"\n";
    
  2. or download this
       my @fld = /FIELD\w\s*=\s*(\S+)/g;
       print join( ',', @fld ), "\n";