Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] YYYYMMDD date format Re:

From: arolls:bigpond:au at: 15-Nov-2000 1:02

Hi Carlos,
> I was wondering how can I get > the date formatted as YYYYMMDD? > > Carlos
Try this:
>> date: now/date
== 15-Nov-2000
>> repeat a 3 [append "" date/:a]
== "20001115" or
>> rejoin [date/1 date/2 date/3]
== "20001115" Anton