in reply to Re^3: Extraction of numbers in an string
in thread Extraction of numbers in an string
Even simpler: no need for grep.
my @x = split /\D+/, $string;Update: tybalt89 and AnomalousMonk are both right, of course. My bad :(
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Extraction of numbers in an string
by tybalt89 (Monsignor) on Nov 25, 2016 at 20:47 UTC | |
Re^5: Extraction of numbers in an string
by AnomalousMonk (Archbishop) on Nov 25, 2016 at 20:50 UTC |