Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Convert weekday to numerical date

by choroba (Cardinal)
on Apr 29, 2017 at 05:54 UTC ( [id://1189147]=note: print w/replies, xml ) Need Help??


in reply to Convert weekday to numerical date

Using Time::Piece and Time::Seconds:
#!/usr/bin/perl use warnings; use strict; use feature qw{ say }; use Time::Piece; use Time::Seconds; sub show { my ($date, $label) = @_; $label ||= $date->fullday; say join ' ', $label, $date->month, $date->mday; } my $today = localtime; show($today, 'Today'); my $yesterday = $today - ONE_DAY; show($yesterday, 'Yesterday'); for my $minus (0 .. 7) { my $prev = $today - $minus * ONE_DAY; show($prev); }

($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (2)
As of 2024-04-20 03:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found