in reply to Re: Regex for matching dotted numbers
in thread Regex for matching dotted numbers
Basically these are version number for a product. So the series can be as given below
- 8.1.1
- 8.100.1
- 9.0.300.1
- 9.0.301.1
- 9.0.400.1
- 9.0.401.1
- 9.1.0.0
- 9.100.1.0
So I need to make sure that if the version matches above then I need to skip running a particular script else run it.
In Section
Seekers of Perl Wisdom