home *** CD-ROM | disk | FTP | other *** search
- /* Special escapes:
- * %% A single `%'.
- * %a Abbreviated weekday name.
- * %A Full weekday name.
- * %b Abbreviated month name.
- * %B Full month name.
- * %d Day of the month as a decimal number (01-31).
- * %e Day of the month as a decimal number (1-31) (%d without the leading 0).
- * %F
- * %H
- * %I
- * %j Day of the year as a decimal number (001-366)
- * %m Month as a decimal number (01-12).
- * %M Minute as a decimal number (00-59).
- * %p
- * %S
- * %w
- * %y Year without century (00-99).
- * %Y Year with century (e.g. 1990).
- * %z
- * %Z
- *
- * %c Time and date using the NSTimeDateFormatString representation (or a
- * suitable default) for the locale.
- * %x Date using the NSTimeDateFormatString representation (or a suitable
- * default) for the locale.
- * %X Time using the NSTimeDateFormatString representation (or a suitable
- * default) for the locale.
- */
-
- (
- "%c",
- "%A, %B %e, %Y", /* Monday, April 1, 1996 */
- "%B %e, %Y", /* April 1, 1996 */
- "%e %B %Y", /* 1 April 1996 */
- "%m/%d/%y", /* 04/01/96 */
- "%b %d, %Y", /* Apr 01, 1996 */
- "%d %b %Y" /* 01 Apr 1996 */
- )
-