Greetings Monks,
Is anyone aware of a module that would help me determine if a time in this format:
02:29:40
Falls between a start and stop time in the same format? I came up with this elementray way of converting the hours, minutes, and seconds into a number like so:
my ($ace_hour_start,$ace_min_start,$ace_sec_start) =
(split/:/, $ace_start_time);
$ace_hour_start = $ace_hour_start * 100;
$ace_min_start = $ace_min_start * 10;
$ace_start_time = $ace_hour_start + $ace_min_start + $ace_sec_start
+;
my ($ace_hour_stop,$ace_min_stop,$ace_sec_stop) =
(split/:/, $ace_stop_time);
$ace_hour_stop = $ace_hour_stop * 100;
$ace_min_stop = $ace_min_stop * 10;
$ace_stop_time = $ace_hour_stop + $ace_min_stop + $ace_sec_stop;
But I'm thinking there has got to be an easier/cleaner way. I looked through the plethora of Date/Time modules on CPAN and nothing is jumping out at me (but I'm sure it's right in front of me).
I appreciate any suggestions.
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.