Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Now tested it.
The code
#!/usr/bin/perl use strict; use warnings; use DateTime; use DateTime::Event::Recurrence; use DateTime::Format::Strptime; my $strp = DateTime::Format::Strptime->new( pattern => '%Y-%m-%d %T', ); my $datf = qq{2012-01-01 04:00:00}; my $datt = qq{2012-01-02 23:00:00}; my $start = $strp->parse_datetime($datf); my $end = $strp->parse_datetime($datt); my $day_set = DateTime::Event::Recurrence->daily( hours => [7, 22], ); my $it = $day_set->iterator ( start => $start->truncate(to=>"hour"), before => $end->truncate(to=>"hour"), ); while ( my $dt = $it->next() ) { print $dt->datetime(), "\n"; }
prints:
2012-01-01T07:00:00 2012-01-01T22:00:00 2012-01-02T07:00:00 2012-01-02T22:00:00

The desired output should be:
2012-01-01T08:00:00 2012-01-01T09:00:00 2012-01-01T10:00:00 2012-01-01T11:00:00 2012-01-01T12:00:00 2012-01-01T13:00:00 2012-01-01T14:00:00 2012-01-01T15:00:00 2012-01-01T16:00:00 2012-01-01T17:00:00 2012-01-01T18:00:00 2012-01-01T19:00:00 2012-01-01T20:00:00 2012-01-01T21:00:00 2012-01-01T22:00:00 2012-01-02T08:00:00 2012-01-02T09:00:00 2012-01-02T10:00:00 2012-01-02T11:00:00 2012-01-02T12:00:00 2012-01-02T13:00:00 2012-01-02T14:00:00 2012-01-02T15:00:00 2012-01-02T16:00:00 2012-01-02T17:00:00 2012-01-02T18:00:00 2012-01-02T19:00:00 2012-01-02T20:00:00 2012-01-02T21:00:00 2012-01-02T22:00:00
which is produced by your code from Re^5: A question to iterator in Datetime::Event::Recurrence but not the above code.
... This assumed that I understood everything correctly :-)
Greetings, VE

In reply to Re^2: A question to iterator in Datetime::Event::Recurrence by vagabonding electron
in thread A question to iterator in Datetime::Event::Recurrence by vagabonding electron

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-24 05:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found