Date Format String
Last update: 27th Mai 2001


written by:

Juergen Schwister / Cologne / Germany
Mobile: +49 179 22 11 282
Juergen.Schwister@gmx.net
http://home.vr-web.de/~jSwi



The DateFormatString has to contain the tokens YYYY, MM, DD.
Some examples:
 
Formatresult
YYYY-MM-DD2000-11-02 (2nd of November 2000)
DD.MM.YYYY02.11.2000
DD.MM.02.11. (the year will be skipped)
#DD-MM-YYYY##02-11-2000#
DD.GG.YYYY 02.GG.2000 (hups, you do not have to try this ;-))

 
YYYYwill be replaced by the year (4 digits)
MMwill be replaced by the month (2 digits with leading zero if less 10)
DDwill be replaced by the date (2 digit with leading digits if less 10)

Don not use the ["] in that string, if there is a blank in it enclose it by ["].

Any comments are appreciated.

Kind regards

Juergen Schwister

wish list
  • -none-
Known bugs
  • -none- (so report some, if you find them)

History (YYYY-MM-DD vX.XX)

  • 2001-05-27 v1.0
    • initial Release