in reply to Re^2: Regex for matching dotted numbers
in thread Regex for matching dotted numbers
Please don't make substantial changes to your original posts in a way that makes answers you already received not make sense anymore. Instead, add an addendum to your post to clarify.
Now, that said, what exactly is it you want to do now? You've got a list of version numbers and a version you want to match against them, and you want to run a particular script unless that version is on your list. So why not simply do exactly that in Perl?
foreach (@versions) { unless($_ eq $version) { runscript(...); } }
Or, more idiomatically:
runscript(...) foreach (grep { $_ ne $version } @versions);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Regex for matching dotted numbers
by techman2006 (Beadle) on Jul 21, 2014 at 11:45 UTC | |
by AppleFritter (Vicar) on Jul 21, 2014 at 11:55 UTC |