in reply to Re: simple for some
in thread Comparing file contents to array values

Or maybe :
my $number_to_guess = X ; my %stuff ; map { $_ =~ /^\d{10}(.*)/ ; $stuff{$_} = $1 ; } @row ; } @rows; print $stuff{$number_to_guess} ;
Or maybe not