in reply to
Re: Numbers only in a string
in thread
Numbers only in a string
don't need to use a character class here -- just:
s/\D+//g;
[download]
Comment on
Re^2: Numbers only in a string
Download
Code
In Section
Seekers of Perl Wisdom