in reply to Re^2: nth field extraction
in thread nth field extraction

In that case there could be a slight performance benefit in storing results in a hash, e.g.
my %res; ... ... for my $fullString (however they are obtained) { $res{$fullString} ||= fieldParse( $fullString, etc. ); etc... }

One world, one people