Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: date::manip question

by Kenosis (Priest)
on Feb 02, 2013 at 20:39 UTC ( [id://1016754]=note: print w/replies, xml ) Need Help??


in reply to date::manip question

You have:

my $raw_date1 == $ARGV[0]; # Default to today if date is blank: if ( $raw_date1 == "" ) { ...

Didn't you mean:

my $raw_date1 = $ARGV[0]; # Default to today if date is blank: if ( $raw_date1 eq "" ) { ...

Replies are listed 'Best First'.
Re^2: date::manip question
by e5z8652 (Novice) on Feb 02, 2013 at 20:55 UTC
    Yes, I did. I had warnings turned off, and when I added them in my cutout Perl told me right away that == was the wrong operator. And of course now it works. And that infers the answer. I'm guessing that "15 Jan" worked because it started with a number, where "Jan 15" is a string through and through. But this particular typo has been in place for YEARS without being caught. Still wondering what changed in Debian land where it stopped working in the last month. Oddness.

      On a side note, perhaps the following may be helpful:

      my $date1 = UnixDate( ParseDate($raw_date1) || 'today', "%Y-%m-%d" );

      This, instead of checking for an empty string, will either send a successful ParseDate or 'today' to UnixDate. I'd suggest a more comprehensive sanity check on the date data, but this will catch more than just an empty string.

        As you can tell from my posts, most of my Perl scripts are quick "get 'er done" type things. I am not a developer or programmer, but a jack-of-all-trades network guy.

        That being said I appreciate any advice. I'll probably clean them up now that they've broken and I'm looking at them anyway.

        I think in this case I got caught in the reversal of comparison operators between Bash and Perl. Per the ABSG chapter 7, the == operator is for strings and -eq is for integers. Exactly the opposite for Perl. So I probably had the Bash operators in mind when I wrote the original...

        :/

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-03-29 11:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found