Saltar al contenido principal
Versión: v20 R4

Formatos Fecha y hora

Throughout your 4D projects, you might need to format date and/or time values according to the specificities of the application, the platform, or the interface.

4D includes a comprehensive list of patterns that you can use to create and apply customized date and time formats in your applications, in addition to default formats. Customized format patterns are supported by the following features:

Lista de patrones

The following table lists all supported patterns for date and time formats.

SímboloSignificadoModeloEjemplo de salida
Gdesignador de eraG, GG o GGGAD
GGGGAnno Domini
GGGGGA
yañoyy96
y o yyyy1996
Yaño de "Semana del año"Y1997
uaño prolongadou4601
QtrimestreQ2
QQ02
QQQQ2
QQQQ2do trimestre
QQQQQ2
qtrimestre independienteq2
qq02
qqqQ2
qqqq2do trimestre
qqqqq2
Mmes en añoM9
MM09
MMMSept
MMMMSeptiembre
MMMMMS
Lmes independiente en añoL9
LL09
LLLSept
LLLLSeptiembre
LLLLLS
wsemana del añow27
ww27
ddía del mesd2
dd2
Ddía del añoD189
Edía de la semanaE, EE o EEETue
EEEETuesday
EEEEET
EEEEEETu
elocal day of weeke2
ee02
eeeTue
eeeeTuesday
eeeeeT
eeeeeeTu
cstand-alone local day of weekc o cc2
cccTue
ccccTuesday
cccccT
ccccccTu
aAM o PMa, aa, o aaaPM [abbrev]
aaaaPM [wide]
aaaaap
bAM, PM, mediodía, medianocheb, bb o bbbmid.
bbbbmedianoche
bbbbbmd
Bflexible day periodsB, BB o BBBat night [abbrev]
BBBBat night [wide]
BBBBBat night [narrow]
hhour in am/pm (1~12)h7
hh07
Hhour in day (0~23)H0
HH00
Khour in am/pm (0~11)K0
KK00
khour in day (1~24)k24
kk24
mminuto en horam4
mm04
ssegundo en minutos5
ss05
XTime Zone: ISO8601 basic hm?, with Z for 0X-08, +0530, Z
Zona horaria: ISO8601 hm básico, con ZXX-0800, Z
Time Zone: ISO8601 extended hm, with ZXXX-08:00, Z
Time Zone: ISO8601 basic hms?, with ZXXXX-0800, -075258, Z
Time Zone: ISO8601 extended hms?, with ZXXXXX-08:00, -07:52:58, Z
xTime Zone: ISO8601 basic hm?, without Z for 0x-08, +0530
Time Zone: ISO8601 basic hm, without Zxx-0800, +0000
Time Zone: ISO8601 extended hm, without Zxxx-08:00
Time Zone: ISO8601 basic hms?, without Zxxxx-0800, -075258
Time Zone: ISO8601 extended hms?, without Zxxxxx-08:00, -07:52:58
OTime Zone: short localized GMTOGMT-8
Time Zone: long localized GMT (=ZZZZ)OOOOGMT-08:00
zTime Zone: specific non-locationz, zz, o zzz-0800
zzzzGMT-08:00
zzzzz-08:00, -07:52:58, Z
'escape for text''
' 'two single quotes produce one' '' '

Explorar modelos

y vs Y

y is the calendar year, while Y is the year based on the week number. For example, if the first days of January 2010 are not week #1, then y = 2010 but Y = 2009 (until the date where the 1st week of 2010 begins).

L (monopuesto) vs M

In some languages (Russian, Slovak), the month used alone is different from the month in a date. In "January 10, 2010", "January" is not spelled the same as in "rendez-vous in January".

e vs c

Same remark as for L and M: c is for a day used alone "every tuesday") and e is for a day in a date ("Tuesday January 15, 1951").

E vs e

e is based on system settings: if the week is defined in the system as starting on a Wednesday, then Wednesday will have the numerical value "1" (or zero) whereas "E" always returns the same value (from 1 to 7 or from 0 to 6).

Ceros a la izquierda

In general, when the number of letters in the formatting string is higher than the expected number, leading zeros are added. Ej: "yyyyy" daría "001996".

Partes localizadas

Some parts of the outputs, such as "midnight" or "Tuesday" are localized, according to regional settings.

For example, for the time 13:25:34, "B" will display in the afternoon on an US system, and après-midi on a French system.

Letras adicionales

Formatting strings can contain characters not to be interpreted as formatting characters: if they are between "a" and "z" or "A" and "Z", they must be enclosed in single quotes.

Por ejemplo:

"15:30:00" with pattern "HH 'hours and' mm 'minutes'" produces "15 hours and 30 minutes".

Espacios iniciales y finales

Starting and ending spaces in patterns are automatically trimmed in outputs. If you want to add spaces before or after the resulting string, you must enclose them in single quotes.

Por ejemplo:

" HH : mm : ss " ---> "09 : 10 : 25" "' 'HH : mm : ss' '" ---> " 09 : 10 : 25 "

Ejemplos

Fecha u horaModeloResultComentarios
15/06/2000"QQQQ""2do trimestre"localizado
17/03/2001"D""76"76º día del año
17/03/1954"w""11"11ª semana del año
17/03/1954"eeee""Miércoles"localizado
15:00:00"a""PM"
18:00:00"K a""6 PM"
13:30:15"hh:mm aa O""01:30 PM GMT+1"

Ver también

See this blogpost for more information on the custom date and time formats.