Does anyone knows why $#a one less than the actually number of elements in an array?
$ perl -we '@a=(1,2);print $#a'
1
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s the index of the last item and since arrays start at zero (unless you’re messing around with things that are better left alone),
$#ais one less than the length of the array.