How to script a comparison of a number against a range?
1 is not within 2-5
or
3 is within 2-5
|
|
|
|
|
|
|
It's even better in
|
| So much of Perl 6 looks awesome that I think I can forgive the few things that don't. – Chris Lutz Feb 28 at 5:55 | |||
| I think that smart match works in perl510 too? – jettero Feb 28 at 13:48 | |||
| Given/When also works in 5.10, it's one of the things that was back-ported to Perl5. – Brad Gilbert Feb 28 at 15:09 | |||
| Truly, when Perl 6 arrives it will change the way your grandchildren write code. – j_random_hacker Feb 28 at 15:32 | |||
|
@j_random_hacker: "doesn't exist yet" is out of date FUD. you could say "not yet released", but it sure does exist: perl.com/download.csp#perl6 – ysth Mar 1 at 11:07 |
|
|
In Perl:
|
||||||||||
|
|
|
In bash:
|
||||||
|
|
|
The smart match operator is available in Perl 5.10, too:
|
||||||
|
|
|
In perl
will give you a true value if the number is in the range and a false value otherwise. For example:
|
|||
|
|
In bash:
|
||
|
|