If the data you show is the actual format, you're going to need to make sure all your dates are in the correct format. The dates in the data have leading zeros in single digit months and days but your search terms do not. That's likely to cause an issue. Build your search string with a sprintf function rather than just concatenating numbers.

If you need to do more complex date calculations, you are better of using one of the modules designed to work with date data. Date::Calc and Date::Manip are two well known modules that can help with that.

If you are getting uninitialized value warnings, you need to check why. Look at the warning. It tells you where the problem occurred. My suspicion is the there is a blank line on line 122 in the input file, which means there wasn't any data to split, so the variables being printed were uninitialized. If that is a problem, just check for blank lines before splitting or empty variables before printing.


In reply to Re^5: copying records from one file to another with filter. by thundergnat
in thread copying records from one file to another with filter. by avanta

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.