http://www.perlmonks.org?node_id=593897


in reply to Re: Matching numeric digits in strings
in thread Matching numeric digits in strings

map{chomp($_)}@infile; map{chomp($_)}@reqids;

I think you mean:

chomp @infile; chomp @reqids;

Isn't that simpler?

--
<http://dave.org.uk>

"The first rule of Perl club is you do not talk about Perl club."
-- Chip Salzenberg