How to script a comparison of a number against a range?
1 is not within 2-5
or
3 is within 2-5
|
feedback
|
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 '09 at 5:55 |
|||
|
Given/When also works in 5.10, it's one of the things that was back-ported to Perl5. – Brad Gilbert Feb 28 '09 at 15:09 |
||
|
Truly, when Perl 6 arrives it will change the way your grandchildren write code. – j_random_hacker Feb 28 '09 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 '09 at 11:07 |
|
In Perl:
| |||||||||||
feedback
|
|
In bash:
| |||||||||
feedback
|
|
The smart match operator is available in Perl 5.10, too:
| |||||||
feedback
|
|
In Bash:
Edited to correctly handle conditions as noted in the comment below.
| |||||
feedback
|
|
In perl
will give you a true value if the number is in the range and a false value otherwise. For example:
| |||||||||
feedback
|