in reply to
Removing non digits
Just to show another way of doing it, I'd probably do:
@array = map { s/\D//g; $_ } @array;
[download]
Comment on
Re: Removing non digits
Download
Code
In Section
Seekers of Perl Wisdom