[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? > > CarlosTry this:>> date: now/date== 15-Nov-2000>> repeat a 3 [append "" date/:a]== "20001115" or>> rejoin [date/1 date/2 date/3]== "20001115" Anton