Help for this page

Select Code to Download


  1. or download this
    while (my $ptfkey = <F2>)
    
  2. or download this
    while (<F2>) {
        $ptfkey = $_; # you can skip this using above suggestion
    ...
        $ptfpn =~ m/^([\d\-\.]+)/; # if it's a float
        $F1hash{$1} = 1;
        }
    
  3. or download this
    if ($PartNumber =~ $Flhash{$PartNumber}) {
    
  4. or download this
    if (exists $F1hash{$PartNumber}) {
    
  5. or download this
    #!c:\perl\bin\perl -w
    # note the addition of the -w
    
    use diagnostics;
    use strict;