Language basics / Type conversions |
Date formatting occurs when converting a DATE to a string with the USING operator, for example in a LET, DISPLAY or PRINT instruction, and when displaying date values in form fields defined with the FORMAT attribute.
This example formats a DATE value with the USING operator:
MAIN DEFINE d DATE LET d = MDY(12,24,2014) DISPLAY d USING "mmm ddd yyyy" END MAIN
Dec Wed 2014
This topic describes the syntax of the format-string in the USING "format-string" operator and FORMAT = "format-string" form field attribute.
When formatting DATE values, the format-string of the USING operator or FORMAT attribute consists of a set of place holders that represent the day of the month as digits or as abbreviated name of the month, the month of the year as digits or as abbreviated name of the month, and the year as 2, 3 or 4 digits.
Table 1 shows the formatting symbols for DATE expressions. Any character different from the placeholders described in this table is interpreted as a literal and will appear as-is in the resulting string.
The calendar used for date formatting is the Gregorian calendar. The c1 placeholder is a formatting symbol used to adapt the date to the Ming Guo calendar.
Placeholder | Description |
---|---|
dd | Day of the month as a 2-digit integer. |
ddd | Three-letter English-language abbreviation of the day of the week. For example: Mon, Tue. |
mm | Month as a 2-digit integer. |
mmm | Three-letter English-language abbreviation of the month. For example: Jan, Feb. |
yy | Year, as a 2-digits integer representing the 2 trailing digits. |
yyy | Year as a 3-digit number (Ming Guo format only) |
yyyy | Year as a 4-digit number. |
c1 | Ming Guo format modifier, see Using the Ming Guo date format. |
Format String | Date value | Result string |
---|---|---|
dd/mm/yyyy | 2011-10-24 | 24/10/2011 |
[dd/mm/yy] | 2011-10-24 | [24/10/11] |
[ddd-mmm-yyyy] | 0141-10-24 | [Tue-Oct-0141] |
(ddd.) mmm. dd, yyyy | 1999-09-23 | (Thu.) Sep. 23, 1999 |