Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Date format question

by athomason (Curate)
on Sep 12, 2000 at 03:16 UTC ( [id://32018]=note: print w/replies, xml ) Need Help??


in reply to Date format question

printf and more generally sprintf allow you to specify how wide you want fields to print. printf just takes the string returned by sprintf and actually prints it, but the format specifiers are documented with sprintf. Try this:

printf("%4d.%02d.%02d\n", $year, $month, $day);

Update:

As BlaisePascal points out, this snippet assumes that the variables already contain what you want to print out; you may need to coerce return values from time functions to get them into the appropriate form.

Replies are listed 'Best First'.
RE: Re: Date format question
by BlaisePascal (Monk) on Sep 12, 2000 at 03:19 UTC
    Try:
    printf("%4d.%02d.%02d\n",$year+1900,$month,$day);
    That is, if you don't want today's date to be printed as 100.09.11

    You might want to use sprintf if you are trying to get it in a string.

      Actually, you'll also want to use $month+1...

      printf("%4d.%02d.%02d\n",$year+1900,$month+1,$day);

Log In?
Username:
Password:

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

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

    No recent polls found