http://www.perlmonks.org?node_id=946580


in reply to Re^3: Range Operator in If Statement
in thread Range Operator in If Statement

Could you explain...

Let me try. First,

[ 'A' .. 'F' ]

is a reference to an anonymous arrray (see references quick reference). To access, for example, the second element of this array, the syntax is:

[ 'A' .. 'F' ]->[1]

(You could also do ${ [ 'A' .. 'F' ] }[1] but I find the first form cleaner.)

Then, instead of hard-coding the array index, my snippet calculates it in the fashion indicated in LanX's post above. The only difference is that I've removed int() since perl happily does this part of the job for me when I use a floating point number as an array index.

To clarify, the following code, using a named array and an intermediate variable ($index), does the same thing:

my @array = ( 'A' .. 'F' ); my $ref_number = 42; # or whatever my $index = ( $ref_number - 1 ) / 8; my $bundle = $array[ $index ]; print $bundle;

hth, dave

Replies are listed 'Best First'.
Re^5: Range Operator in If Statement
by mmartin (Monk) on Jan 06, 2012 at 17:30 UTC
    Hey thanks for the explaination...

    I'll give it a try and see how it goes.

    Thanks Again,
    Matt