Here's how I'd make sure there are no blank records in the file,
to get an accurate count of the records that have data in them:
(I've been doing a lot with regular expressions and file parsing lately)

local $/;             # Perl's record separator - default is \n unless...
$/ = undef;           # ... we make it undefined!
open(SESAME,$file);   # open the file
$f = (<SESAME>);      # the entire file, including all \n chars, is now sitting in a single scalar!
close(SESAME);
$f = s/\n+/\n/gs;     # regular expression replaces contiguous strings of \n chars with single \n chars.
$f = s/^\n//s;        # regex removes \n at the start of the string, if there is one.
$f = s/\n$//s;        # regex removes \n at the end of the string, if there is one.
@x = split(/\n/,$f);  # split string on the \n char, store split values in array @x
$x = @x;              # the number of elements in @x
print "There are $x records in file $file\n";
exit(0);

In reply to Re: I don't understand why I'm getting an unitialized value warning by Doc Technical
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.