【Power Automate】日期格式化函数formatDateTime详细说明及示例

时间:2025-04-01 07:48:08

前言

在Power Automate(Microsoft Flow)中有时候会对日期格式的数据进行格式化,下面将根据示例进行介绍

函数

formatDateTime('utc日期格式字符串','最终输出格式')

说明

请注意,第一个参数为字符串而不是日期,且为utc日期格式的字符串(power automate中utcNow()函数获取当前日期,返回utc格式的日期)

示例

参考 返回结果 说明
formatDateTime('2020-02-05T10:10:00Z','yyyy-MM-dd') 2020-02-05

formatDateTime('2020-02-05T10:10:00Z','o')
 
2020-02-05T10:10:00.0000000Z 返回iso日期格式
formatDateTime('2020-02-05T10:10:00Z','ddd MM yyyy') Wed 02 2020
formatDateTime('1000-12-30T00:00:00Z','yyyy-MM-dd') 1000-12-30 与 SharePoint 和 PowerApps 不同,可以使用的日期没有限制