在 PowerShell 中格式化日期时间

Rohan Timalsina 2023年1月30日
  1. 在 PowerShell 中使用 -format 选项格式化日期和时间
  2. 在 PowerShell 中使用 (Get-Date).ToString 格式化日期和时间
  3. 在 PowerShell 中使用 GetDateTimeFormats() 从所有日期和时间格式样式中进行选择
  4. 在 PowerShell 中的 HTTP 标头中格式化要使用的日期和时间
在 PowerShell 中格式化日期时间

本教程将介绍在 PowerShell 中格式化 datetime 的不同方法。你可以使用 cmdlet Get-Date 查看系统的当前日期和时间。

Get-Date

输出:

Friday, December 3, 2021 5:28:16 PM

上面的输出是显示 datetime 的默认格式。我们将查看不同的示例,以其他可能的格式显示日期和时间。

在 PowerShell 中使用 -format 选项格式化日期和时间

以下命令分别以 Year-Month-DaySecond:Minute:Hour 的格式显示当前 datetime

Get-Date -format "yyyy-MM-dd ss:mm:HH"

输出:

2021-12-03 49:07:16

如果只想打印日期,则只需要使用日期格式。例如,

Get-Date -format "dd/MM/yyyy"

输出:

03/12/2021

在 PowerShell 中使用 (Get-Date).ToString 格式化日期和时间

另一种更改日期和时间格式的方法是:

(Get-Date).ToString("dd/MM/yyyy HH:mm:ss")

输出:

03/12/2021 19:08:39

在 PowerShell 中使用 GetDateTimeFormats() 从所有日期和时间格式样式中进行选择

要查看所有 datetime 格式,你可以使用以下命令。它显示日期和时间格式样式的大型字符串数组。

(Get-Date).GetDateTimeFormats()

输出:

12/3/2021
12/3/21
12/03/21
12/03/2021
21/12/03
2021-12-03
03-Dec-21
Friday, December 3, 2021
...
3 December, 2021 4:54:50 PM
3 December, 2021 04:54:50 PM
3 December, 2021 16:54:50
3 December, 2021 16:54:50
December 2021
December 2021

你可以使用 [] 从数组列表中选择一种格式样式。例如,

(Get-Date).GetDateTimeFormats()[7]

输出:

Friday, December 3, 2021

在 PowerShell 中的 HTTP 标头中格式化要使用的日期和时间

你可以使用格式说明符 Rr 来格式化用于 HTTP 标头的日期和时间。它以 RFC1123 格式显示日期和时间。

Get-Date -format R

或者

(Get-Date).ToString("R")

输出:

Fri, 03 Dec 2021 18:11:41 GMT
作者: Rohan Timalsina
Rohan Timalsina avatar Rohan Timalsina avatar

Rohan is a learner, problem solver, and web developer. He loves to write and share his understanding.

LinkedIn Website