Om du vill formatera hur datum- och tidsstämpelvariabler eller utdata i en kedja ska visas kan du använda en Parse Date/Time transformation, och ange värdet som strängformattid (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.
-->Datumvärden
| Värde | Exempel | strftime |
|---|---|---|
| Namn för hela dagen | Söndag |
%A |
| Förkortat namn på dagen | Solen |
%a |
| Veckodag | 0 till 6, där söndagen är 0 |
%w |
| Tvåsiffrigt år | 21 |
%y |
| Fyrsiffrigt år | 2021 |
%Y |
| Fullständigt månadsnamn | Januari |
%B |
| Förkortat månadsnamn | Jan |
%b |
| Tvåsiffrig månad | 01 till 12, januari till december |
%m |
| Tvåsiffrig dag i månaden | 01 till 31 |
%d |
| Dag i månaden utan inledande nolla | 1 till 31 |
%e |
Du kan stränga ihop dessa värden för att ange ett datumformat. Till exempel:
| Datumformat | Exempel | strftime |
|---|---|---|
| mm/dd/åååå | 12/01/2021 |
%m/%d/%Y |
| [Fullständigt namn på dag], [fullständigt namn på månad] [dag i månaden utan inledande nolla], [fyrsiffrigt år] | Onsdagen den 1 december 2021 |
%A, %B %e, %Y |
| [Förkortat månadsnamn] [dag i månaden utan inledande nolla] [Förkortat dagsnamn] | 1 december onsdag |
%b %e %a |
Tidsvärden
| Värde | Exempel | strftime |
|---|---|---|
| Timme i 24-timmarsklockan | 00 till 23 |
%H |
| Timme på 12-timmarsklocka | 01 till 12 |
%I |
| Timme på 12-timmarsklocka utan inledande noll | 1 till 12 |
%1 |
| Minut | 00 till 59 |
%M |
| Andra | 00 till 60 |
%S |
| Ante eller post meridium | AM eller PM |
%p |
| Tidszon | 08 |
%Z |
| Dag i året | 001 till 366 |
%m |
| Procent tecken | % |
%% |
Du kan stapla dessa värden tillsammans för att ange ett tidsformat. Till exempel:
| Datumformat | Exempel | strftime |
|---|---|---|
| HH:MM i 24-timmarsklocka | 23:01 |
%H:%M |
| H:MM i 12-timmarsklocka, med ante eller 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> -->