in reply to Range Operator in If Statement

...or, you could reuse an existing function from Acme::Tools (or create your own function)
use warnings; use strict; use Acme::Tools qw(between); my $ref = 7; if (between($ref, 1, 8)) { print "between\n"; }

Replies are listed 'Best First'.
Re^2: Range Operator in If Statement
by mmartin (Monk) on Jan 04, 2012 at 21:14 UTC
    toolic, thanks for the reply...

    Sweet deal... I just cpan-ed it and I will give it a try.


    Thanks alot,
    Matt