I tried Google.
I tried Yahoo.
I tried Bing.
None of them had results for the $[ variable. Does anyone know where I can find the documentation for it?
|
I tried Google. I tried Yahoo. I tried Bing. None of them had results for the $[ variable. Does anyone know where I can find the documentation for it? |
|||||||||||||
|
|
|
|||||||||||||||||
|
|
Everyone above has covered it, but I'd like to add that Perldoc is available nicely formatted online at http://perldoc.perl.org/. Details on all the special variable can be found at http://perldoc.perl.org/perlvar.html. What are you using it for? |
|||||||
|
|
If you have a recent version of
This variable is deprecated in Perl version 5.12 The main reason you would find the
|
||||
|
|
|
$[ is a scalar containing the first index of all arrays. It's usually 0 since perl arrays are zero-indexed. You can set it to a different value though, like 1, and then all your arrays will start from key 1. |
|||||||||||||||||
|