##
# Reading lines into $_ in a while loop and removing
# line terminator
while( <$inputFH> )
{
chomp; # Acts on $_ by default
... # Rest of your line-processing code here
}
####
my $rxExtractNameData = qr
{(?x)
(
\s+
(\w+)
\s+
\([A-Z]\)
\s+
\(\d*%\)
\s+
\d+\s+\+\s+[+-]?\d+
)
};