我想将管道触发时间格式化为以下格式:
10-Mar-2021 08:31:59 AM下面是我使用的代码:
@formatDateTime(pipeline().TriggerTime, 'DD-MON-YYYY HH:MI:SS AM/PM')但是,日期的格式如下:
'DD-3ON-YYYY 08:3I:SS A3/P3'有人能帮我解决这个问题吗?
发布于 2021-03-10 18:08:29
formatDateTime函数使用自定义日期格式字符串,您可以看到列出的here。详细的细目
dd - the day of the month from 01 to 31. Note this is lower case and this format gives a leading 0. Using d for no leading 0
MMM - the abbreviated name of the month, eg JAN, FEB, MAR. Note this is upper case
yyyy - the year as a four-digit number. Note this is lower case
hh - the hour using a 12-hour clock from 01 to 12. Note this is lower case. As you are using AM/PM it makes sense to have the 12-hour clock rather than 24 (ie 23:00 PM would not make sense). Note this is lower case
mm - the minute from 00 to 50. Note this is lower case
ss - the second from 00 to 50. Note this is lower case
tt - the AM/PM designator. Note this is lower case因此,使用这些信息,您的代码应该更像这样:
@formatDateTime(pipeline().TriggerTime, 'dd-MMM-yyyy hh:mm:ss tt')我使用Set Variable activity测试了表达式,得到了以下结果:

https://stackoverflow.com/questions/66560903
复制相似问题