home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / dateFormatOptions.table < prev    next >
Encoding:
Text File  |  1996-09-09  |  522 b   |  23 lines

  1. /*    %a abbreviated weekday name
  2.     %A full weekday name
  3.     %b abbreviated month name
  4.     %B full month name
  5.     %c time and date using 
  6.     %d day of the month as a decimal number (01-31)
  7.     %m month as a decimal number (01-12)
  8.     %x date using the NSDateFormatString representation for the locale
  9.     %y year without century (00-99)
  10.     %Y year with century (e.g. 1990)
  11.     %e day of the month as a decimal (1-31) (same as %d, but no leading 0)
  12. */
  13.  
  14.        "%c",
  15.     "%A, %B %e, %Y",
  16.     "%B %e, %Y",
  17.     "%e %B %Y",
  18.     "%m/%d/%y",
  19.     "%b %d, %Y",
  20.     "%d %b %Y"
  21. )
  22.