vote up 1 vote down star

How to script a comparison of a number against a range?

1 is not within 2-5

or

3 is within 2-5

flag

6 Answers

vote up 10 vote down

It's even better in Perl6.

Chained comparison operators:

if( 2 <= $x <= 5 ){
}

Smart-match operator:

if( $x ~~ 2..5 ){
}

Junctions:

if( $x ~~ any 2..5 ){
}

Given / When operators:

given( $x ){
  when 2..5 {
  }
  when 6..10 {
  }
  default{
  }
}
link|flag
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
1  
@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
show 5 more comments
vote up 9 vote down

In Perl:

if( $x >= lower_limit && $x <= upper_limit ) {
   # $x is in the range
}
else {
   # $x is not in the range
}
link|flag
appreciate the quick replies! – noobbk Feb 28 at 4:46
Um ... I think some sigils are missing. Perl probably does the right thing but you might also want to keep in mind that perl uses floating point as default for numbers, so you have the potential for the 0.999999... == 1.0 problem. But I'm an old Fortran programmer, so discount my words accordingly. – jaredor Feb 28 at 5:25
Recent perls try hard to keep integers stored as such. – ysth Mar 1 at 4:25
thanks for the edits brian. The invisible $ in perl frequently bites me. – Adnan Mar 1 at 5:25
I prefer if( lower_limit <= $x && $x <= upper_limit ). – Brad Gilbert Mar 1 at 14:59
show 2 more comments
vote up 6 vote down

In bash:

$ if [[ 1 -gt 2 && 1 -lt 5 ]]; then echo "true"; fi
$ if [[ 3 -gt 2 && 1 -lt 5 ]]; then echo "true"; fi
true
link|flag
sweet! mucho gracias – noobbk Feb 28 at 4:47
Just for fun: if seq $lo $hi | grep -w $num; then echo yes indeedy sir; fi – ysth Mar 1 at 4:22
if (( lower <= x && x <= upper )); then echo true; fi – Brad Gilbert Mar 1 at 20:57
vote up 3 vote down

The smart match operator is available in Perl 5.10, too:

if ( $x ~~ [2..5] ) {
    # do something
}
link|flag
So is Given/When. – Brad Gilbert Mar 1 at 15:00
yeah, and any {$_ == $x} 2..5 can be done using List::MoreUtils – hillu Mar 1 at 21:37
or Quantum::Superpositions. but that or L::MU's any are so horrifically expensive that it curdles my prematurely optimizing blood to think of using them for trivial tests. – ysth Mar 2 at 2:20
vote up 0 vote down

In perl

grep {/^$number$/} (1..25);

will give you a true value if the number is in the range and a false value otherwise.

For example:

[dsm@localhost:~]$ perl -le 'print "has `$ARGV[0]`" if grep {/^$ARGV[0]$/} (1..25)' 4
has `4`
[dsm@localhost:~]$ perl -le 'print "has `$ARGV[0]`" if grep {/^$ARGV[0]$/} (1..25)' 456
[dsm@localhost:~]$
link|flag
"will give you a non-empty list" - actually, perl will return true/false when grep is used in scalar context (like in your examples) - and newer perls also short circuit in this case, iirc. – blixtor Mar 2 at 13:22
thanks for the correction – dsm Mar 2 at 13:44
vote up 0 vote down

In bash:

if [[ $(echo {2..5}) =~ $x ]]; then echo true; fi
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.