[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Format natural date

John Butler

5/10/2008 11:03:00 AM

Is there a way to format a natural date like May 7, 2008 to 07/05/2008.
Ive tried
Date.strptime("May 7, 2008", '%d/%m/%Y') without success?

Is it possible to this in a one line with ruby?

JB
--
Posted via http://www.ruby-....

3 Answers

Robert Klemme

5/10/2008 12:35:00 PM

0

On 10.05.2008 13:03, John Butler wrote:
> Is there a way to format a natural date like May 7, 2008 to 07/05/2008.
> Ive tried
> Date.strptime("May 7, 2008", '%d/%m/%Y') without success?

You seem to want to _reformat_ a date string. But the code you show
just _parses_ a string into a Date. If you want to reformat your string
you first need to parse it and then format it.

> Is it possible to this in a one line with ruby?

Yes. You're almost there but you need to format your format string so
it matches the date strings that you are trying to parse. Since there
is nowhere a slash in your date string it comes as no surprise that the
format does not match. :-)

Kind regards

robert

Todd Benson

5/10/2008 12:45:00 PM

0

On Sat, May 10, 2008 at 6:03 AM, John Butler <johnnybutler7@gmail.com> wrote:
> Is there a way to format a natural date like May 7, 2008 to 07/05/2008.
> Ive tried
> Date.strptime("May 7, 2008", '%d/%m/%Y') without success?
>
> Is it possible to this in a one line with ruby?
>
> JB

Yes, but I don't know why you would want to.

#strptime builds a Date object from your string with your format.
Then, you must format it.

If you don't need the Date object, I would just perform the magic on
the string itself. Matching month abbreviations to month numbers can
be done with Date::ABBR_MONTHNAMES.

hth,

Todd

John Butler

5/10/2008 12:54:00 PM

0

Todd Benson wrote:
> On Sat, May 10, 2008 at 6:03 AM, John Butler <johnnybutler7@gmail.com>
> wrote:
>> Is there a way to format a natural date like May 7, 2008 to 07/05/2008.
>> Ive tried
>> Date.strptime("May 7, 2008", '%d/%m/%Y') without success?
>>
>> Is it possible to this in a one line with ruby?
>>
>> JB
>
> Yes, but I don't know why you would want to.
>
> #strptime builds a Date object from your string with your format.
> Then, you must format it.
>
> If you don't need the Date object, I would just perform the magic on
> the string itself. Matching month abbreviations to month numbers can
> be done with Date::ABBR_MONTHNAMES.
>
> hth,
>
> Todd

Ok i see, i didnt explain myself properly, i wanted to turn "May 23,
2008" into a date and then output it as 23/05/2008"

Below works fine.

Date.strptime("May 23, 2008", '%B %d, %Y').strftime("%d/%m/%Y")
--
Posted via http://www.ruby-....