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