in reply to RE: it is amazing sometimes how little you know...
in thread it is amazing sometimes how little you know...
to get every number on the string. In fact, if you have a simple regex like this you don't need the grouping parenthesis, you can simply use:@array = ($string =~ /(\d+)/g);
One of my favorite examples of this is the following code to keep the $VERSION variable in sync with the RCS/CVS revision number (taken from the perlmod man page):@array = ($string =~ /\d+/g);
It took me a while to fully understand this code the first time I saw it :-)$VERSION = do { my @r = (q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
--ZZamboni
|
|---|