Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Re: Fetching date

by Anonymous Monk
on Jan 21, 2004 at 17:19 UTC ( [id://322950]=note: print w/replies, xml ) Need Help??


in reply to Re: Fetching date
in thread Fetching date

thanks all, but it could also be: Feb 1 00:41 So I could use all your examples for the above also?

Replies are listed 'Best First'.
Re: Re: Re: Fetching date
by Limbic~Region (Chancellor) on Jan 21, 2004 at 17:25 UTC
    Anonymous Monk,
    You could just make the \d greedy and say \d+ but that runs the risk of mistaken garbage for treasure.
    my ($mon, $day, $hour, $min) = $date =~ /(\w+)\s(\d\d?)\s(\d\d):(\d\d) +/;
    The above should be closer to what you want, but you should keep some things in mind. If you know that the month abbreviation will always be 3 letters long then say so. When the day is 1 instead of 12 does the number of spaces between the hour change in order to get the fields to line up (perhaps in a log)?
    my ($mon, $day, $hour, $min) = $date =~ /(\w{3})\s+(\d\d?)\s+(\d\d):(\ +d\d)/;
    Cheers - L~R

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://322950]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found