Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: How do I find the index of the last element in an array?

by ChrisS (Monk)
on Nov 12, 2003 at 14:31 UTC ( [id://306530]=note: print w/replies, xml ) Need Help??


in reply to How do I find the index of the last element in an array?

Be careful... you can change the starting index value to something other than zero. I would not recommend doing so, but if you did, you'd get the wrong value by using scalar.

Let me show you what I mean:

# change the starting index -- usually not a good idea. $[ = 2; # create a sample array @data = qw(one two three four); # try to find the last index value $bad = @data - 1; $still_bad = scalar @data - 1; $good = $#data; # what did we find? print "bad: $bad\n"; # gives 3 print "still bad: $still_bad\n"; # gives 3 print "good: $good\n" # gives 5

So I would recommend two things:

  1. Don't change the starting index value without a very good reason.
  2. Use the $#array_name syntax if you really need the last index value. (Usually, you want the last element, and can just use the negative subscript technique mentioned above.)

Trying to debug someone else's code when they've changed $[ can be particularly annoying.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://306530]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (1)
As of 2024-04-24 14:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found