Para dar formato a cómo deben aparecer las variables de fecha y hora o las salidas dentro de una cadena, puede aplicar la transformación a Parse Fecha/Time, y establecer el valor como formato de cadena de tiempo (strftime).
<!--<ul> <li> Paste the raw transformation as the command property's value. </li> </ul>String format time
To use a Parse Date/Time transformation to set the format of a date or timestamp, enter its values as strftime.
-->Valores de Fecha
Valor | Ejemplo | strftime |
---|---|---|
Nombre completo del día | Domingo |
%A |
Nombre abreviado del día | Sol |
%a |
Día de la semana | 0 a 6 , donde el domingo es 0 |
%w |
Año de dos cifras | 21 |
%y |
Año de cuatro cifras | 2021 |
%Y |
Nombre completo del mes | Enero |
%B |
Nombre abreviado del mes | Jan |
%b |
Mes de dos cifras | 01 a 12 , de enero a diciembre |
%m |
Dos dígitos del día del mes | 01 a 31 |
%d |
Día del mes sin cero inicial | 1 a 31 |
%e |
Puede encadenar estos valores para establecer un formato de fecha. Por ejemplo:
Formato de la Fecha | Ejemplo | strftime |
---|---|---|
mm/dd/aaaa | 12/01/2021 |
%m/%d/%Y |
[Nombre completo del día], [nombre completo del mes] [día del mes sin cero a la izquierda], [año de cuatro cifras]. | Miércoles, 1 de diciembre de 2021 |
%A, %B %e, %Y |
[Nombre abreviado del mes] [día del mes sin cero a la izquierda] [nombre abreviado del día]. | 1 dic mié |
%b %e %a |
Valores temporales.
Valor | Ejemplo | strftime |
---|---|---|
Hora del reloj de 24 horas | 00 a 23 |
%H |
Hora del reloj de 12 horas | 01 a 12 |
%I |
Hora de un reloj de 12 horas sin cero inicial | 1 a 12 |
%1 |
Minuto | 00 a 59 |
%M |
Segundo | 00 a 60 |
%S |
Ante o post meridium | AM o PM |
%p |
Huso horario | +08 |
%Z |
Día del año | 001 a 366 |
%m |
Signo de porcentaje | % |
%% |
Puede encadenar estos valores para establecer un formato de hora. Por ejemplo:
Formato de las Fechas | Ejemplo | strftime |
---|---|---|
HH:MM en reloj de 24 horas | 23:01 |
%H:%M |
H:MM en reloj de 12 horas, con ante o post meridium | 4:31 PM |
%1:%M %p |
Raw transformations
Rather than apply a transformation to a variable or output used as a command property, you can copy and paste these raw transformations in the command property:
<h3>Timestamp</h3>For a full date and timestamp value, such as 2021-03-15T16:04:28.744118Z:
<pre>$(Chain.ExecutionDateTime)</pre> <h3>Time</h3>For the hour and minutes, such as 1610:
<pre>$(Chain.ExecutionDateTime)@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%H%MOC_ARGOC_ARGOC_ARG}</pre>For the hour, minutes, and seconds, such as 161051:
<pre>$(Chain.ExecutionDateTime)@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%H%M%SOC_ARGOC_ARGOC_ARG}</pre> <h3>Date</h3>With date values, the raw transformation can set the format for the current date or include subtractions to set previous years' values.
<h4>Current year</h4>For the current, four-digit year:
<pre>$(Chain.ExecutionDateTime)@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%YOC_ARGOC_ARGOC_ARG}</pre>For the current month and four-digit year:
<pre>$(Chain.ExecutionDateTime)@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%m%YOC_ARGOC_ARGOC_ARG}</pre>For the full current date, starting with the day, such as 31102021:
<pre>$(Chain.ExecutionDateTime)@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%d%m%YOC_ARGOC_ARGOC_ARG}</pre>For the full current date, starting with the month, such as 10312021:
<pre>$(Chain.ExecutionDateTime)@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%m%d%YOC_ARGOC_ARGOC_ARG}</pre> <h4>Previous year</h4>For the previous, four-digit year:
<pre>$(Chain.ExecutionDateTime)@transform{dateMathOC_SPLIT%FT%T.%fZOC_ARGsubtractOC_ARG1OC_ARGyearsOC_ARG}@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%YOC_ARGOC_ARGOC_ARG}</pre>For the current month a year ago:
<pre>$(Chain.ExecutionDateTime)@transform{dateMathOC_SPLIT%FT%T.%fZOC_ARGsubtractOC_ARG1OC_ARGyearsOC_ARG}@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%m%YOC_ARGOC_ARGOC_ARG}</pre>For the current date a year ago, starting with the day, such as 31102020:
<pre>$(Chain.ExecutionDateTime)@transform{dateMathOC_SPLIT%FT%T.%fZOC_ARGsubtractOC_ARG1OC_ARGyearsOC_ARG}@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%d%m%YOC_ARGOC_ARGOC_ARG}</pre>For the current date a year ago, starting with the month, such as 10312020:
<pre>$(Chain.ExecutionDateTime)@transform{dateMathOC_SPLIT%FT%T.%fZOC_ARGsubtractOC_ARG1OC_ARGyearsOC_ARG}@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%m%d%YOC_ARGOC_ARGOC_ARG}</pre> <h4>The year before last</h4>For the four-digit year, two years ago:
<pre>$(Chain.ExecutionDateTime)@transform{dateMathOC_SPLIT%FT%T.%fZOC_ARGsubtractOC_ARG2OC_ARGyearsOC_ARG}@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%YOC_ARGOC_ARGOC_ARG}</pre>For the current month two years ago:
<pre>$(Chain.ExecutionDateTime)@transform{dateMathOC_SPLIT%FT%T.%fZOC_ARGsubtractOC_ARG2OC_ARGyearsOC_ARG}@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%m%YOC_ARGOC_ARGOC_ARG}</pre>For the current date two years ago, starting with the day, such as 31102019:
<pre>$(Chain.ExecutionDateTime)@transform{dateMathOC_SPLIT%FT%T.%fZOC_ARGsubtractOC_ARG2OC_ARGyearsOC_ARG}@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%d%m%YOC_ARGOC_ARGOC_ARG}</pre>For the current date a year ago, starting with the month, such as 10312019:
<pre>$(Chain.ExecutionDateTime)@transform{dateMathOC_SPLIT%FT%T.%fZOC_ARGsubtractOC_ARG2OC_ARGyearsOC_ARG}@transform{parseDateTimeOC_SPLIT%FT%T.%fZOC_ARG%m%d%YOC_ARGOC_ARGOC_ARG}</pre> -->