$total is the number of elements in @lines, not the last array index. You're looping until $i <= $total, so the last element that you're trying to access is beyond the bounds of the array. So it's undefined.

Say that your array has 5 elements:

my @lines = qw/a b c d e/; my $total = @lines;
$total is now 5, but the last array index is 4, because the indices start at 0. In your for loop, $i goes from 0 to 5, and when $i is 5, you're trying to access
$lines[5]
which doesn't exist.

The solution, of course, is to change your for loop:

for my $i (0..$total-1) { ...
Of course, if this is all you're doing, you may as well just use grep:
my $total = grep $_ ne "\n", @lines;

In reply to Re: I don't understand why I'm getting an unitialized value warning by btrott
in thread I don't understand why I'm getting an unitialized value warning by little_mistress

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.