时间差函数列出两个时间内的所有日期

Posted Xiao-C

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间差函数列出两个时间内的所有日期相关的知识,希望对你有一定的参考价值。

 1 function DateDiff
 2 {
 3 param([Parameter(Mandatory=$true)][datetime]$starttime,[datetime]$endtime,[string]$formatdate=‘D‘)
 4 [long]$firsttime+=[long]((date $starttime).ToOADate())
 5 [long]$lasttime=(date $endtime).ToOADate()
 6 do
 7 {
 8     [string[]]$result+=(‘{0:‘+$formatdate+‘}‘) -f [System.DateTime]::FromOADate($firsttime)
 9     $firsttime++
10 }
11 until($firsttime -gt $lasttime)
12 return $result
13 }
14 DateDiff 2017/7/1 2017/7/10
15 #还有一个备用参数是缺省值,可不填。

 

以上是关于时间差函数列出两个时间内的所有日期的主要内容,如果未能解决你的问题,请参考以下文章

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

合并两个日期字段在两个月内的 pandas DataFrame

MySQL:选择两个日期范围内的所有数据

在python中生成给定范围内的所有日期

pandas使用bdate_range函数获取起始时间(start)和结束时间(end)范围内的所有周末日期(weekends day)

.map函数内的子组件显示所有子实例[重复]