in reply to Playing with $[
Why are your symbols called calar and rray?
I think you thought $[ is some array index pointer, but it's not. $[ sets the base index, and you should never change it. Its documentation (from perlvar) clearly states what it does:
$[You probably meant something like:
The index of the first element in an array, and of the first character in a substring. Default is 0, but you could theoretically set it to 1 to make Perl behave more like awk (or Fortran) when subscripting and when evaluating the index() and substr() functions. (Mnemonic: [ begins subscripts.) As of release 5 of Perl, assignment to $[ is treated as a compiler directive, and cannot influence the behavior of any other file. Its use is highly discouraged.
But in that case, I think you should really use the simpler and more efficient for VAR (LIST) BLOCK. And don't forget to use strict.@array = qw(foo bar spam eggs); for ($index = 0; $index < @array; $index++) { print $array[$index]; }
(Note that the last for loop could also just have been print for @array, or if $, isn't set even print @array.)use strict; my @array = qw(foo bar spam eggs); for my $element (@array) { print $element; }
- Yes, I reinvent wheels.
- Spam: Visit eurotraQ.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Playing with $[
by cLive ;-) (Prior) on Jul 06, 2002 at 15:00 UTC | |
by LAI (Hermit) on Jul 06, 2002 at 19:02 UTC |