I suspect the other posts will help you with your problem, but in the event they don't, it seems like you're omitting or heavily editing your code. What you posted shouldn't even compile, as you have variables that are undeclared. Typically you only get that message when working with an undefined scalar in such a way that you're assuming it has content. This can occur with your array if you have an undefined element, which is likely because you are pushing
$line onto it, and I don't see anywhere where you are setting
$line. So basically for each line that you read from the file (into
$_), you're pushing 'undef' onto the array. Another poster mentioned that you should be using
$_, which is correct, or change your
while construct to read something like:
while ($line = <FILE>) { ....
So if these posts don't help you, can you post the real code with 2 or 3 additional lines so that we can get a better feel for context? Good luck.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.